ci: set concurrency and trigger ci on master (#2701)
This commit is contained in:
parent
3c4267eb50
commit
c64becf80c
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@ -2,8 +2,14 @@ name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [master]
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
|
||||
4
.github/workflows/release-please.yml
vendored
4
.github/workflows/release-please.yml
vendored
@ -3,7 +3,9 @@ on:
|
||||
branches:
|
||||
- master
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}
|
||||
cancel-in-progress: true
|
||||
name: release-please
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
4
.github/workflows/semantic-pr-subject.yml
vendored
4
.github/workflows/semantic-pr-subject.yml
vendored
@ -7,7 +7,9 @@ on:
|
||||
- edited
|
||||
- synchronize
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
semantic-pr-subject:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Loading…
Reference in New Issue
Block a user