Skip to content

Commit

Permalink
ci: enable GitHub merge train
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Sep 21, 2023
1 parent 5f5eb71 commit c1af7f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integrationtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
# Instead, it is the right thing that the CI always covers the whole repository
# and that it is as stable as possible.

name: "Cargo workspace"
name: "Integration Test"

# Run on every push (tag, branch) and pull_request
on: [pull_request, push, workflow_dispatch]
on: [pull_request, push, merge_group]

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qa.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: QA

on: [ push, pull_request ]
on: [pull_request, push, merge_group]

jobs:
spellcheck:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
name: "Cargo workspace"

# Run on every push (tag, branch) and pull_request
on: [pull_request, push, workflow_dispatch]
on: [pull_request, push, workflow_dispatch, merge_group]

env:
CARGO_TERM_COLOR: always
Expand Down

0 comments on commit c1af7f4

Please sign in to comment.