Skip to content

Commit

Permalink
Fix Double Push (#6889)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald authored Jan 10, 2025
1 parent b0f1fa6 commit 2088645
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ name: CI

on:
push:
branches-ignore: ["trunk"]
branches-ignore: [
# CI is running on the merge queue, so we don't need to run on trunk at all.
"trunk",
# This is the branch the merge queue creates.
"gh-readonly-queue/*"
]
tags: [v0.*]
pull_request:
merge_group:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/shaders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ name: Shaders

on:
push:
branches-ignore: ["trunk"]
branches-ignore: [
# CI is running on the merge queue, so we don't need to run on trunk at all.
"trunk",
# This is the branch the merge queue creates.
"gh-readonly-queue/*"
]
tags: [v0.*]
pull_request:
merge_group:
Expand Down

0 comments on commit 2088645

Please sign in to comment.