From ce250a68c5e8a86c9eab48a774e6a6b87a3bf875 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Tue, 21 Feb 2023 14:04:04 -0500 Subject: [PATCH] chore: hardcode v6 branch name in v6 canary publish Not sure if this is why the job is being skipped. If this is the right fix, we'll want to update https://typescript-eslint.io/maintenance/releases#1-pre-release-preparation too. --- .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 fb57a457211d..abf0d94746b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -271,7 +271,7 @@ jobs: name: Publish the next major version code as a canary version runs-on: ubuntu-latest needs: [integration_tests, lint_with_build, lint_without_build, unit_tests] - if: github.ref == 'refs/heads/v${major}' + if: github.ref == 'refs/heads/v6' steps: - name: Checkout uses: actions/checkout@v3