Skip to content

Commit

Permalink
Skip the join job on release tags
Browse files Browse the repository at this point in the history
  • Loading branch information
aherrmann committed Dec 2, 2023
1 parent d1905c9 commit 68b1817
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,5 +187,9 @@ jobs:
if: ${{ always() }}
steps:
- uses: cgrindel/[email protected]
# Skip on release flows when invoked through the release workflow.
# Otherwise gha_join_jobs discovers its own job in the job list and
# fails since it is not yet succeeded, but still in progress.
if: github.event_name != 'push' || !startsWith(github.ref, 'refs/tags/v')
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 68b1817

Please sign in to comment.