diff options
author | 2023-07-12 06:31:04 +0000 | |
---|---|---|
committer | 2023-07-12 06:31:04 +0000 | |
commit | 42abd6be387e319919820c76191ff0170012cb4c (patch) | |
tree | a6a4416a7fea6e809a4bdb33619f2bb2207116e1 | |
parent | 82fa94d2cd2829cc37111d247e913cecdad561ac (diff) | |
parent | e9847bc431b20f309cc75e036721d5495f121725 (diff) | |
download | cortex-m-42abd6be387e319919820c76191ff0170012cb4c.tar.gz cortex-m-42abd6be387e319919820c76191ff0170012cb4c.tar.zst cortex-m-42abd6be387e319919820c76191ff0170012cb4c.zip |
Merge pull request #483 from rust-embedded/ghmq
Swap to GHMQ
-rw-r--r-- | .github/bors.toml | 15 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | .github/workflows/clippy.yml | 4 | ||||
-rw-r--r-- | .github/workflows/on-target.yml | 4 | ||||
-rw-r--r-- | .github/workflows/rt-ci.yml | 4 | ||||
-rw-r--r-- | .github/workflows/rustfmt.yml | 4 |
6 files changed, 15 insertions, 20 deletions
diff --git a/.github/bors.toml b/.github/bors.toml deleted file mode 100644 index 17cef85..0000000 --- a/.github/bors.toml +++ /dev/null @@ -1,15 +0,0 @@ -block_labels = ["needs-decision"] -delete_merged_branches = true -required_approvals = 1 -status = [ - "ci-linux (stable)", - "ci-linux (1.59.0)", - "rt-ci-linux (stable)", - "rt-ci-linux (1.59.0)", - "rt-ci-other-os (macOS-latest)", - "rt-ci-other-os (windows-latest)", - "hil-qemu", - "hil-compile-rtt", - "rustfmt", - "clippy", -] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d9b2b4..16456af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,9 @@ on: push: - branches: [ staging, trying, master ] + branches-ignore: + - "gh-readonly-queue/**" pull_request: + merge_group: name: cortex-m CI diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index ecfd0b9..9ae8db4 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -1,7 +1,9 @@ on: push: - branches: [ staging, trying, master ] + branches-ignore: + - "gh-readonly-queue/**" pull_request_target: + merge_group: name: Clippy check jobs: diff --git a/.github/workflows/on-target.yml b/.github/workflows/on-target.yml index 20121ee..67a1d57 100644 --- a/.github/workflows/on-target.yml +++ b/.github/workflows/on-target.yml @@ -1,7 +1,9 @@ on: push: - branches: [ staging, trying, master ] + branches-ignore: + - "gh-readonly-queue/**" pull_request: + merge_group: # allows manual triggering workflow_dispatch: diff --git a/.github/workflows/rt-ci.yml b/.github/workflows/rt-ci.yml index d46e48a..383e013 100644 --- a/.github/workflows/rt-ci.yml +++ b/.github/workflows/rt-ci.yml @@ -1,7 +1,9 @@ on: push: - branches: [ staging, trying, master ] + branches-ignore: + - "gh-readonly-queue/**" pull_request: + merge_group: name: cortex-m-rt CI diff --git a/.github/workflows/rustfmt.yml b/.github/workflows/rustfmt.yml index c29106e..c19695a 100644 --- a/.github/workflows/rustfmt.yml +++ b/.github/workflows/rustfmt.yml @@ -1,7 +1,9 @@ on: push: - branches: [ staging, trying, master ] + branches-ignore: + - "gh-readonly-queue/**" pull_request: + merge_group: name: Code formatting check |