Skip to content

Commit

Permalink
ci: Fix condition in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt committed Oct 30, 2024
1 parent 2171581 commit 5e4adf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
release:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }} && github.repository == 'flathub-infra/flatpak-builder-lint' && github.ref == 'refs/heads/master' && contains(github.event.head_commit.message, '[release]')
if: ${{ github.event.workflow_run.conclusion == 'success' && github.repository == 'flathub-infra/flatpak-builder-lint' && github.ref == 'refs/heads/master' && contains(github.event.head_commit.message, '[release]') }}
steps:
- name: Delay for 2 minutes
run: sleep 120
Expand Down

0 comments on commit 5e4adf8

Please sign in to comment.