Skip to content

Commit ea88e86

Browse files
committed
fix worklow dispatch
1 parent 83f14c7 commit ea88e86

3 files changed

Lines changed: 13 additions & 10 deletions

File tree

.github/workflows/docker-build-push.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ on:
1515
workflows: [Tests]
1616
types: [completed]
1717
branches: [main-test, staging]
18+
workflow_dispatch:
1819

19-
# concurrency:
20-
# group: ${{ github.workflow }}-${{ github.ref }}
21-
# cancel-in-progress: true
20+
concurrency:
21+
group: ${{ github.workflow }}-${{ github.ref }}
22+
cancel-in-progress: true
2223

2324
permissions:
2425
contents: read

.github/workflows/terraform-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ on:
88
# branches: [main, staging]
99
branches: [main-test, staging]
1010

11-
concurrency:
12-
group: ${{ github.workflow }}-${{ github.ref }}
13-
cancel-in-progress: true
14-
1511
workflow_dispatch:
1612
inputs:
1713
environment:
@@ -23,6 +19,10 @@ concurrency:
2319
- staging
2420
- production
2521

22+
concurrency:
23+
group: ${{ github.workflow }}-${{ github.ref }}
24+
cancel-in-progress: true
25+
2626
permissions:
2727
contents: read
2828
id-token: write

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ on:
1010
# branches: [main, staging]
1111
branches: [main-test, staging]
1212

13-
# concurrency:
14-
# group: ${{ github.workflow }}-${{ github.ref }}
15-
# cancel-in-progress: true
13+
workflow_dispatch:
14+
15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.ref }}
17+
cancel-in-progress: true
1618

1719
jobs:
1820
# TODO uncomment

0 commit comments

Comments
 (0)