Remove and Add Multiple Labels on Approval #154
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Remove and Add Multiple Labels on Approval | ||
on: | ||
pull_request_review: | ||
types: | ||
- submitted | ||
jobs: | ||
remove-labels-on-approve: | ||
if: github.event.review?.state == 'approved' # Trigger only when the review is approved | ||
Check failure on line 10 in .github/workflows/remove-label-on-approve.yml GitHub Actions / Remove and Add Multiple Labels on ApprovalInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
# Checkout the repository | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 |