Skip to content

Commit 2088645

Browse files
authored
Fix Double Push (gfx-rs#6889)
1 parent b0f1fa6 commit 2088645

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ name: CI
22

33
on:
44
push:
5-
branches-ignore: ["trunk"]
5+
branches-ignore: [
6+
# CI is running on the merge queue, so we don't need to run on trunk at all.
7+
"trunk",
8+
# This is the branch the merge queue creates.
9+
"gh-readonly-queue/*"
10+
]
611
tags: [v0.*]
712
pull_request:
813
merge_group:

.github/workflows/shaders.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ name: Shaders
22

33
on:
44
push:
5-
branches-ignore: ["trunk"]
5+
branches-ignore: [
6+
# CI is running on the merge queue, so we don't need to run on trunk at all.
7+
"trunk",
8+
# This is the branch the merge queue creates.
9+
"gh-readonly-queue/*"
10+
]
611
tags: [v0.*]
712
pull_request:
813
merge_group:

0 commit comments

Comments
 (0)