Skip to content

Commit

Permalink
workflows: Fix logical conditions
Browse files Browse the repository at this point in the history
Missing && caused workflow to trigger on every issue

Signed-off-by: Denys Fedoryshchenko <[email protected]>
  • Loading branch information
nuclearcat committed May 6, 2024
1 parent fead790 commit fdf3d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
group: ${{ github.workflow }}-${{ github.ref }}
if: |
${{ github.event.requested_team.name == 'hackers'}} &&
${{ github.event.issue.pull_request }}
${{ github.event.issue.pull_request }} &&
contains(github.event.comment.body, '/staging')
steps:
- name: Checkout PR branch
Expand Down

0 comments on commit fdf3d58

Please sign in to comment.