Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: do not run actions for same branch in parallel
Browse files Browse the repository at this point in the history
Guria committed Oct 17, 2022
1 parent 0b606dd commit 04d73c2
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/clean.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Cleanup deployment

concurrency:
group: ${{ github.event.pull_request.head.ref || 'stg' }}
cancel-in-progress: false

on:
pull_request:
types:
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Build&Deploy

concurrency:
group: ${{ github.event.pull_request.head.ref || 'stg' }}
cancel-in-progress: false

on:
push:
branches: [main, temp]

0 comments on commit 04d73c2

Please sign in to comment.