Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/release-foas-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
needs: [ run-tests ]
permissions:
contents: write # required to push the release tag
# Tag is created only when tests pass (or are explicitly skipped).
if: >-
!cancelled()
&& !contains(needs.*.result, 'failure')
Expand All @@ -52,6 +51,9 @@ jobs:
name: Failure Handler
needs: [ run-tests, create-tag ]
if: ${{ always() && contains(needs.*.result, 'failure') }}
permissions:
contents: write #required to open a Jira ticket / issue
issues: write
uses: ./.github/workflows/failure-handler.yml
with:
env: "prod"
Expand Down