ci: trigger ci-pr-riscv64-linux workflow on unlabeled events
This way, if the ci-riscv64-linux label was added to a PR previously, removing
it will cause the concurrency group of the workflow to cancel the runs triggered
by the label being added.
1 files changed, 1 insertions(+), 0 deletions(-)
.github
workflows
.github/workflows/ci-pr-riscv64-linux.yaml+1
| ... | @@ -6,6 +6,7 @@ on: | ... | @@ -6,6 +6,7 @@ on: |
| 6 | - opened | 6 | - opened |
| 7 | - reopened | 7 | - reopened |
| 8 | - synchronize | 8 | - synchronize |
| | 9 | - unlabeled |
| 9 | concurrency: | 10 | concurrency: |
| 10 | # Cancels pending runs when a PR gets updated. | 11 | # Cancels pending runs when a PR gets updated. |
| 11 | group: riscv64-linux-${{ github.head_ref || github.run_id }}-${{ github.actor }} | 12 | group: riscv64-linux-${{ github.head_ref || github.run_id }}-${{ github.actor }} |