We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b47ab4f commit 5211580Copy full SHA for 5211580
.github/workflows/labeler.yml
@@ -79,9 +79,9 @@ jobs:
79
'labels': [ 'Needs Review' ]
80
})
81
82
- # Add "Needs Review" label when PR is marked ready for review:
83
- - name: 'Add "Needs Review" label if PR is ready for review'
84
- if: ${{ github.event.action == 'ready_for_review' }}
+ # Add "Needs Review" label when PR is marked ready for review or review is requested:
+ - name: 'Add "Needs Review" label if PR is ready for review or review is requested'
+ if: ${{ github.event.action == 'ready_for_review' || github.event.action == 'review_requested' }}
85
# Pin action to full length commit SHA
86
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
87
with:
0 commit comments