Update push_event.yml #4
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
# running specific actions related to push events | |
name: Remove PRT labels for new commit | |
on: | |
push: | |
jobs: | |
remove-prt-labels: | |
name: Remove PRT labels for new commit | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "event name is:" ${{ github.event_name }} | |
- run: echo "event type is:" ${{ github.event.action }} | |
- name: Remove the previous PRT Result labels | |
if: contains(github.event.pull_request.labels.*.name, 'PRT') | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.CHERRYPICK_PAT }} | |
script: | | |
const prNumber = ${{ github.event.number }}; | |
const issue = await github.rest.issues.get({ | |
owner: context.issue.owner, | |
repo: context.issue.repo, | |
issue_number: prNumber, | |
}); | |
const labelsToRemove = ['PRT-Failed', 'PRT-Passed']; | |
const labelsToRemoveFiltered = labelsToRemove.filter(label => issue.data.labels.some(({ name }) => name === label)); | |
if (labelsToRemoveFiltered.length > 0) { | |
await Promise.all(labelsToRemoveFiltered.map(async label => { | |
await github.rest.issues.removeLabel({ | |
issue_number: prNumber, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
name: label | |
}); | |
})); | |
} | |