Skip to content

Commit 601c423

Browse files
authored
Update CI triggers (#7983)
1 parent 942e59e commit 601c423

File tree

4 files changed

+26
-12
lines changed

4 files changed

+26
-12
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ name: CI
33
on:
44
push:
55
branches-ignore: [
6-
# We don't need to run on renovate PRs.
6+
# Renovate branches are always PRs, so they will be covered
7+
# by the pull_request event.
78
"renovate/**",
8-
# This is the branch the merge queue creates.
9+
# Branches with the `gh-readonly-queue` prefix are used by the
10+
# merge queue, so they are already covered by the `merge_group` event.
911
"gh-readonly-queue/**",
1012
]
11-
tags: [v0.*]
1213
pull_request:
1314
merge_group:
1415

.github/workflows/cts.yml

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

33
on:
4+
push:
5+
branches-ignore: [
6+
# Renovate branches are always PRs, so they will be covered
7+
# by the pull_request event.
8+
"renovate/**",
9+
# Branches with the `gh-readonly-queue` prefix are used by the
10+
# merge queue, so they are already covered by the `merge_group` event.
11+
"gh-readonly-queue/**",
12+
]
413
pull_request:
5-
types: [labeled, opened, synchronize]
6-
schedule:
7-
- cron: "33 2 * * *"
8-
workflow_dispatch:
14+
merge_group:
915

1016
env:
1117
CARGO_INCREMENTAL: false

.github/workflows/generate.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@ name: cargo-generate
22

33
on:
44
push:
5-
branches: ["*"]
6-
tags: [v0.*]
5+
branches-ignore: [
6+
# Renovate branches are always PRs, so they will be covered
7+
# by the pull_request event.
8+
"renovate/**",
9+
# Branches with the `gh-readonly-queue` prefix are used by the
10+
# merge queue, so they are already covered by the `merge_group` event.
11+
"gh-readonly-queue/**",
12+
]
713
pull_request:
814
merge_group:
915

.github/workflows/shaders.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ name: Shaders
33
on:
44
push:
55
branches-ignore: [
6-
# We don't need to run on renovate PRs.
6+
# Renovate branches are always PRs, so they will be covered
7+
# by the pull_request event.
78
"renovate/**",
8-
# This is the branch the merge queue creates.
9+
# Branches with the `gh-readonly-queue` prefix are used by the
10+
# merge queue, so they are already covered by the `merge_group` event.
911
"gh-readonly-queue/**",
1012
]
11-
tags: [v0.*]
1213
pull_request:
1314
merge_group:
1415

0 commit comments

Comments
 (0)