fix(ci): enforce concurrency for all workflows

This commit is contained in:
Harsh Shandilya 2023-06-05 02:00:15 +05:30
parent 301760c39f
commit 054ba13dc3
No known key found for this signature in database
3 changed files with 9 additions and 0 deletions

View file

@ -6,6 +6,9 @@ on:
- cron: '43 0 * * *' - cron: '43 0 * * *'
workflow_dispatch: workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs: jobs:
baseline-profile: baseline-profile:
runs-on: macos-latest runs-on: macos-latest

View file

@ -6,6 +6,9 @@ on:
branches: branches:
- main - main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs: jobs:
analyze: analyze:
name: Analyze name: Analyze

View file

@ -2,6 +2,9 @@ name: Release to Google Play
on: on:
workflow_dispatch: workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs: jobs:
publish-google-play-release: publish-google-play-release:
runs-on: ubuntu-latest runs-on: ubuntu-latest