Skip to content

Commit

Permalink
Update PRT Label
Browse files Browse the repository at this point in the history
  • Loading branch information
shweta83 committed Apr 10, 2024
1 parent 6b96dd4 commit 4baef81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/prt_labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
prt_labels_remover:
name: remove the PRT label when amendments or new commits added to PR
runs-on: ubuntu-latest
if: "(contains(github.event.pull_request.labels.*.name, 'PRT-Passed')"
if: "(contains(github.event.pull_request.labels.*.name, 'PRT-Passed') || contains(github.event.pull_request.labels.*.name, 'PRT-Failed'))"
steps:
- name: Avoid the race condition as PRT result will be cleaned
run: |
Expand All @@ -23,7 +23,7 @@ jobs:
wait-interval: 2
count: 5

- name: remove the PRT Passed label, for new commit
- name: remove the PRT Passed/Failed label, for new commit
if: always() && ${{steps.prt.outputs.result}} == 'not_found'
uses: actions/github-script@v7
with:
Expand All @@ -35,7 +35,7 @@ jobs:
repo: context.repo.repo,
issue_number: prNumber,
});
const labelsToRemove = ['PRT-Passed'];
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 => {
Expand Down

0 comments on commit 4baef81

Please sign in to comment.