From 38a79bddeab0d9e653cf28292007fab5e0b6511e Mon Sep 17 00:00:00 2001 From: Hubert Deng Date: Fri, 31 May 2024 09:19:09 -0700 Subject: [PATCH] chore(self-hosted): Automatically pick up e2e test action from main (#3666) I've recently updated the self-hosted e2e test action to properly pick up changes on pre-submit after noticing breakage snuck into master from https://github.com/getsentry/relay/pull/3633. It seems reasonable to pin this to main given that our team has alerting for when this CI check fails on master, and we don't update it frequently. Please let me know if there are any concerns here. #skip-changelog --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40bf7a3799..338758d09f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -609,7 +609,7 @@ jobs: # Skip for dependabot or if it's a fork as the image cannot be uploaded to ghcr since this test attempts to pull # the image from ghcr if: "!github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]'" - uses: getsentry/action-self-hosted-e2e-tests@267fab2add9e173029c1e09ecfd82e04688d7c44 + uses: getsentry/action-self-hosted-e2e-tests@main with: project_name: relay image_url: ghcr.io/getsentry/relay:${{ github.event.pull_request.head.sha || github.sha }}