Skip to content

Commit 62380c3

Browse files
committed
Update github workflows trigger events
1 parent 0469274 commit 62380c3

6 files changed

+38
-32
lines changed

.github/workflows/check-pr-title.yaml

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
name: Check PR Title
22

33
on:
4-
pull_request_target:
5-
types:
6-
- opened
7-
- edited
8-
- synchronize
4+
# pull_request_target:
5+
# types:
6+
# - opened
7+
# - edited
8+
# - synchronize
9+
workflow_dispatch:
910

1011
jobs:
1112
# Ensures that the PR title adheres to [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/).
@@ -14,4 +15,4 @@ jobs:
1415
steps:
1516
- uses: amannn/[email protected]
1617
env:
17-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/monorepo-checks.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
name: "Code Quality Checks"
22

33
on:
4-
workflow_call:
4+
# workflow_call:
55

6-
pull_request:
7-
types:
8-
- opened
9-
- synchronize
10-
- reopened
6+
# pull_request:
7+
# types:
8+
# - opened
9+
# - synchronize
10+
# - reopened
11+
12+
workflow_dispatch:
1113

1214
jobs:
1315
build-and-test:

.github/workflows/monorepo-integrity.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: "Monorepo Integrity"
22

33
on:
4-
pull_request:
5-
branches:
6-
- "**"
7-
push:
8-
branches:
9-
- main
4+
# pull_request:
5+
# branches:
6+
# - "**"
7+
# push:
8+
# branches:
9+
# - main
10+
workflow_dispatch:
1011

1112
jobs:
1213
monorepo-integrity:

.github/workflows/push-branches-from-main.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name: "Push changes to beta and alpha branches"
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
# push:
5+
# branches:
6+
# - main
7+
workflow_dispatch:
78

89
jobs:
910
dev-branch-push:

.github/workflows/semantic-release.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name: Release
22

33
on:
4-
push:
5-
branches:
6-
- main
7-
- beta
4+
# push:
5+
# branches:
6+
# - main
7+
# - beta
8+
workflow_dispatch:
89

910
jobs:
1011
release:

.github/workflows/semgrep.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Semgrep
22
on:
33
workflow_dispatch: {}
4-
pull_request: {}
5-
push:
6-
branches:
7-
- main
8-
schedule:
9-
# random HH:MM to avoid a load spike on GitHub Actions at 00:00
10-
- cron: "35 11 * * *"
4+
# pull_request: {}
5+
# push:
6+
# branches:
7+
# - main
8+
# schedule:
9+
# # random HH:MM to avoid a load spike on GitHub Actions at 00:00
10+
# - cron: "35 11 * * *"
1111
jobs:
1212
semgrep:
1313
name: semgrep/ci

0 commit comments

Comments
 (0)