Skip to content

Commit

Permalink
Reusable workflows: remove concurrency setting
Browse files Browse the repository at this point in the history
... as it can conflict with a concurrency group setting in the "caller" workflow.
  • Loading branch information
jrfnl committed Oct 3, 2024
1 parent a08855e commit cf80023
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 24 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/reusable-markdownlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ name: Markdownlint
on:
workflow_call:

# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
markdownlint:
name: 'Lint Markdown'
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/reusable-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ name: PHPStan
on:
workflow_call:

# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
phpstan:
name: "PHPStan"
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/reusable-remark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ name: Remark
on:
workflow_call:

# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
remark:
name: 'QA Markdown'
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/reusable-yamllint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ on:
required: false
default: false

# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
yamllint:
name: 'Lint Yaml'
Expand Down

0 comments on commit cf80023

Please sign in to comment.