Skip to content

Commit be36ed5

Browse files
committed
Disable auto-trigger on push for main workflows
1 parent 10506dd commit be36ed5

7 files changed

Lines changed: 1 addition & 30 deletions

File tree

.github/workflows/beta.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: beta
22

33
on:
44
workflow_dispatch:
5-
schedule:
6-
- cron: "0 * * * *"
75

86
jobs:
97
sync:

.github/workflows/containers.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
name: containers
22

33
on:
4-
push:
5-
branches:
6-
- dev
7-
paths:
8-
- packages/containers/**
9-
- .github/workflows/containers.yml
10-
- package.json
114
workflow_dispatch:
125

136
permissions:

.github/workflows/deploy.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: deploy
22

33
on:
4-
push:
5-
branches:
6-
- dev
7-
- production
84
workflow_dispatch:
95

106
concurrency: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/generate.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
name: generate
22

33
on:
4-
push:
5-
branches:
6-
- dev
4+
workflow_dispatch:
75

86
jobs:
97
generate:

.github/workflows/publish.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ name: publish
22
run-name: "${{ format('release {0}', inputs.bump) }}"
33

44
on:
5-
push:
6-
branches:
7-
- ci
8-
- dev
9-
- beta
10-
- snapshot-*
115
workflow_dispatch:
126
inputs:
137
bump:

.github/workflows/test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: test
22

33
on:
4-
push:
5-
branches:
6-
- dev
7-
pull_request:
84
workflow_dispatch:
95

106
concurrency:

.github/workflows/typecheck.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: typecheck
22

33
on:
4-
push:
5-
branches: [dev]
6-
pull_request:
7-
branches: [dev]
84
workflow_dispatch:
95

106
jobs:

0 commit comments

Comments
 (0)