Skip to content

Commit

Permalink
Enable merge groups for merge queue
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljharvey committed Oct 31, 2023
1 parent 2050264 commit 3c94bd6
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/cargo-build.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
on: [push]
on:
push:
merge_group:

name: SQLServer NDC build

Expand Down Expand Up @@ -38,7 +40,7 @@ jobs:
with:
status: ${{ job.status }}
notify_when: failure
notification_title: '😧 Error on <{repo_url}|{repo}>'
message_format: '🐴 *{workflow}* {status_message} for <{repo_url}|{repo}>'
notification_title: "😧 Error on <{repo_url}|{repo}>"
message_format: "🐴 *{workflow}* {status_message} for <{repo_url}|{repo}>"
env:
SLACK_WEBHOOK_URL: ${{ secrets.BROKEN_BUILD_SLACK_WEBHOOK_URL }}
8 changes: 5 additions & 3 deletions .github/workflows/cargo-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
on: [push]
on:
push:
merge_group:

name: SQLServer NDC tests

Expand Down Expand Up @@ -48,7 +50,7 @@ jobs:
with:
status: ${{ job.status }}
notify_when: failure
notification_title: '😧 Error on <{repo_url}|{repo}>'
message_format: '🐴 *{workflow}* {status_message} for <{repo_url}|{repo}>'
notification_title: "😧 Error on <{repo_url}|{repo}>"
message_format: "🐴 *{workflow}* {status_message} for <{repo_url}|{repo}>"
env:
SLACK_WEBHOOK_URL: ${{ secrets.BROKEN_BUILD_SLACK_WEBHOOK_URL }}
1 change: 1 addition & 0 deletions .github/workflows/nix-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: nix check

on:
push:
merge_group:

jobs:
nix-develop:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/nix-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ name: multi-architecture docker build

on:
push:
branches:
- main
- djh/multi-arch-build
tags:
- "v*"
merge_group:

jobs:
build_and_deploy:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/rustfmt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: SQLServer NDC check formatting with Rustfmt

on:
push:
merge_group:

jobs:
formatting:
Expand All @@ -27,9 +28,7 @@ jobs:
with:
status: ${{ job.status }}
notify_when: failure
notification_title: '😧 Error on <{repo_url}|{repo}>'
message_format: '🐴 *{workflow}* {status_message} for <{repo_url}|{repo}>'
notification_title: "😧 Error on <{repo_url}|{repo}>"
message_format: "🐴 *{workflow}* {status_message} for <{repo_url}|{repo}>"
env:
SLACK_WEBHOOK_URL: ${{ secrets.BROKEN_BUILD_SLACK_WEBHOOK_URL }}


0 comments on commit 3c94bd6

Please sign in to comment.