Skip to content

Commit

Permalink
chore: fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback committed May 5, 2024
1 parent 488baa6 commit 0cc72ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/gh-issue-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
!github.event.issue.pull_request &&
github.event.action == 'created' &&
github.event.pull_request.author_association != 'CONTRIBUTOR' &&
github.event.pull_request.author_association != 'MEMBER'
github.event.pull_request.author_association != 'MEMBER' &&
contains(github.event.issue.labels.*.name, 'waiting for feedback')
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_ISSUE_NUMBER: ${{ github.event.issue.number }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: >-
!github.event.issue.pull_request &&
github.event.action == 'closed' &&
github.event.label.name == 'staged for release'
contains(github.event.issue.labels.*.name, 'staged for release')
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_ISSUE_NUMBER: ${{ github.event.issue.number }}
Expand Down

0 comments on commit 0cc72ae

Please sign in to comment.