Switching to github.event.number as issue.number not always work (#46018)

This commit is contained in:
Timur Olzhabayev 2022-03-01 11:09:03 +01:00 committed by GitHub
parent 18cbfba596
commit fd644c48ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ on:
- milestoned
- demilestoned
concurrency:
group: pr-checks-${{ github.event.issue.number }}
group: pr-checks-${{ github.event.number }}
jobs:
main:
runs-on: ubuntu-latest

View File

@ -4,7 +4,7 @@ on:
types:
- closed
concurrency:
group: pr-commands-closed-${{ github.event.issue.number }}
group: pr-commands-closed-${{ github.event.number }}
jobs:
close_job:
# this job will only run if the PR has been closed without being merged

View File

@ -5,7 +5,7 @@ on:
- opened
- synchronize
concurrency:
group: pr-commands-${{ github.event.issue.number }}
group: pr-commands-${{ github.event.number }}
jobs:
main:
runs-on: ubuntu-latest