Skip to content

Commit

Permalink
re-add workflow concurrency group
Browse files Browse the repository at this point in the history
  • Loading branch information
SunSerega committed Aug 26, 2024
1 parent abdf2f8 commit 49ebce2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/on commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
permissions:
contents: write

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: false

jobs:
pack-win:
runs-on: windows-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/update gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
permissions:
contents: write

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: false

jobs:
update-gh-pages:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/upstream pretest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
permissions:
contents: write

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false

# There are 2 steps of adding new upstream commits:
# 1. Add new commits from the PR merge ref (and possibly custom branch): to "pretest/$pr_num" in fork
# 2. Add commit with submodule ref move + test changes, with this ref move: to "subm-pretest/$org_repo/$pr_num" in POCGL repo
Expand Down

0 comments on commit 49ebce2

Please sign in to comment.