mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 05:57:03 +05:30
fix(ci): enforce concurrency for all workflows
This commit is contained in:
parent
301760c39f
commit
054ba13dc3
3 changed files with 9 additions and 0 deletions
3
.github/workflows/baseline-profile.yml
vendored
3
.github/workflows/baseline-profile.yml
vendored
|
@ -6,6 +6,9 @@ on:
|
|||
- cron: '43 0 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
jobs:
|
||||
baseline-profile:
|
||||
runs-on: macos-latest
|
||||
|
|
3
.github/workflows/codeql_analysis.yml
vendored
3
.github/workflows/codeql_analysis.yml
vendored
|
@ -6,6 +6,9 @@ on:
|
|||
branches:
|
||||
- main
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
|
|
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
|
@ -2,6 +2,9 @@ name: Release to Google Play
|
|||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
jobs:
|
||||
publish-google-play-release:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue