From 3de884507a139cb7ffd75044a21b81a769e84f1d Mon Sep 17 00:00:00 2001 From: Cameron Martin Date: Thu, 17 Oct 2024 13:47:42 +0100 Subject: [PATCH] ci: Fix release please not running after repository move This action was being skipped since it ran based on repository name to avoid it running on forks, and the repository was moved to bazel-contrib recently. --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index ac8508e0..b73ae5f9 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -12,7 +12,7 @@ name: release-please jobs: release-please: runs-on: ubuntu-latest - if: ${{ github.repository == 'bazelbuild/vscode-bazel' }} + if: ${{ github.repository == 'bazel-contrib/vscode-bazel' }} steps: - uses: google-github-actions/release-please-action@v4 id: release