diff options
author | Marc Cornellà <hello@mcornella.com> | 2022-04-04 21:40:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-04 21:40:08 +0200 |
commit | 4d9e5ce9a7d8db3c3aadcae81580a5c3ff5a0e8b (patch) | |
tree | 26807d076f734ad8e4e1d268da0705af1daa7e59 /.github | |
parent | 53863e7b3ff0c2e2816e90dab3d870adebdf49c7 (diff) | |
download | zsh-4d9e5ce9a7d8db3c3aadcae81580a5c3ff5a0e8b.tar.gz zsh-4d9e5ce9a7d8db3c3aadcae81580a5c3ff5a0e8b.tar.bz2 zsh-4d9e5ce9a7d8db3c3aadcae81580a5c3ff5a0e8b.zip |
ci(project): sort issues and PRs when reopened
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/project.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/project.yml b/.github/workflows/project.yml index 4b671d449..b2219893d 100644 --- a/.github/workflows/project.yml +++ b/.github/workflows/project.yml @@ -1,9 +1,9 @@ name: Project tracking on: issues: - types: [opened] + types: [opened, reopened] pull_request_target: - types: [opened, synchronize] + types: [opened, reopened, synchronize] concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} |