Skip to content

Commit

Permalink
ci: fix concurrency workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fu050409 committed Jul 19, 2024
1 parent 79dc0a8 commit 145ffca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ on:
push:
branches:
- main
paths-ignore:
- '**/*.md'
- LICENSE
- '**/*.gitignore'
- .editorconfig
- docs/**

concurrency: "release ${{ github.workflow }}-${{ github.ref }}"
concurrency: 'release ${{ github.workflow }}-${{ github.ref }}'

permissions: write-all

Expand Down
13 changes: 1 addition & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,8 @@ permissions:
contents: write
id-token: write
on:
push:
branches:
- main
tags-ignore:
- '**'
paths-ignore:
- '**/*.md'
- LICENSE
- '**/*.gitignore'
- .editorconfig
- docs/**
pull_request: null
workflow_call:
workflow_call: null
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
Expand Down

0 comments on commit 145ffca

Please sign in to comment.