ci: rerun issue check on PR edit

Re-run issue check when a PR is updated, i.e. when someone adds
'Fixes...` to the PR body.

This is mostly for release branches and has no effect on main branch.

Also, add concurrency check in the workflow.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2024-08-27 07:28:36 -04:00
commit 4077249cc7
2 changed files with 9 additions and 0 deletions

View file

@ -2,12 +2,20 @@ name: Backport Issue Check
on:
pull_request_target:
types:
- edited
- opened
- reopened
- synchronize
branches:
- v*-branch
jobs:
backport:
name: Backport Issue Check
concurrency:
group: backport-issue-check-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-22.04
if: github.repository == 'zephyrproject-rtos/zephyr'

View file

@ -23,6 +23,7 @@
.github/workflows/stale-workflow-queue-cleanup.yml
.github/workflows/greet_first_time_contributor.yml
.github/workflows/issues-report-config.json
.github/workflows/backport_issue_check.yml
CODEOWNERS
MAINTAINERS.yml
LICENSE