We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12c0878 commit 6f63181Copy full SHA for 6f63181
3 files changed
.asf.yaml
@@ -36,3 +36,17 @@ github:
36
rebase: false
37
features:
38
issues: true
39
+ protected_branches:
40
+ main:
41
+ required_status_checks:
42
+ contexts:
43
+ - "codestyle"
44
+ - "lint"
45
+ - "benchmark-lint"
46
+ - "compile"
47
+ - "docs"
48
+ - "compile-no-std"
49
+ - "test (stable)"
50
+ - "test (beta)"
51
+ - "test (wasm)"
52
+ - "rat"
.github/workflows/license.yml
@@ -23,6 +23,7 @@ on:
23
branches:
24
- main
25
pull_request:
26
+ merge_group:
27
28
jobs:
29
.github/workflows/rust.yml
@@ -17,13 +17,17 @@
17
18
name: Rust
19
20
-on: [push, pull_request]
+on:
21
+ push:
22
+ branches-ignore:
+ - 'gh-readonly-queue/**'
+ pull_request:
permissions:
contents: read
30
-
31
codestyle:
32
runs-on: ubuntu-latest
33
steps:
0 commit comments