Skip to content

Commit

Permalink
fix(all-workflows): Remove push concurrency group
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusSkytte committed Feb 20, 2024
1 parent 7231a04 commit 3e18ab6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/workflow-dispatcher.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ jobs:
echo "branch name: ${{ steps.branch_name.outputs.branch_name }}"
echo "cache_version: ${{ steps.cache_version.outputs.cache_version }}"
lint:
needs: trigger
uses: ./.github/workflows/lint.yaml
Expand Down Expand Up @@ -160,6 +161,7 @@ jobs:
group: R-CMD-check-${{ needs.trigger.outputs.branch_name }}
cancel-in-progress: true


code-coverage:
needs: trigger
uses: ./.github/workflows/code-coverage.yaml
Expand All @@ -178,6 +180,7 @@ jobs:
group: code-coverage-${{ needs.trigger.outputs.branch_name }}
cancel-in-progress: true


document:
needs: trigger
uses: ./.github/workflows/document.yaml
Expand All @@ -188,8 +191,7 @@ jobs:
needs.trigger.outputs.description_changed == 'true')) }}
branch_name: ${{ needs.trigger.outputs.branch_name }}
secrets: inherit
concurrency:
group: push-${{ needs.trigger.outputs.branch_name }}


render-readme:
needs: trigger
Expand All @@ -200,8 +202,7 @@ jobs:
needs.trigger.outputs.readme_files_changed == 'true') }}
branch_name: ${{ needs.trigger.outputs.branch_name }}
secrets: inherit
concurrency:
group: push-${{ needs.trigger.outputs.branch_name }}


pkgdown:
needs: trigger
Expand All @@ -221,6 +222,7 @@ jobs:
group: pkgdown-${{ needs.trigger.outputs.branch_name }}
cancel-in-progress: true


update-lockfile:
needs: trigger
uses: ./.github/workflows/update-lockfile.yaml
Expand All @@ -234,5 +236,3 @@ jobs:
needs.trigger.outputs.description_changed == 'true'))) }}
branch_name: ${{ needs.trigger.outputs.branch_name }}
secrets: inherit
concurrency:
group: push-${{ needs.trigger.outputs.branch_name }}

0 comments on commit 3e18ab6

Please sign in to comment.