File tree Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Expand file tree Collapse file tree 4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -36,3 +36,17 @@ github:
3636 rebase : false
3737 features :
3838 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 (nightly)"
52+ - " Release Audit Tool (RAT)"
Original file line number Diff line number Diff line change 2323 branches :
2424 - main
2525 pull_request :
26+ merge_group :
2627
2728jobs :
2829
Original file line number Diff line number Diff line change 1717
1818name : Rust
1919
20- on : [push, pull_request]
20+ on :
21+ push :
22+ # When PR is in the Merge Queue, GitHub will create a temporary branch - but we already have a
23+ # CI running because of `merge_group`
24+ # https://github.com/orgs/community/discussions/15254
25+ branches-ignore :
26+ - ' gh-readonly-queue/**'
27+ pull_request :
28+ merge_group :
2129
2230permissions :
2331 contents : read
2432
2533jobs :
26-
2734 codestyle :
2835 runs-on : ubuntu-latest
2936 steps :
Original file line number Diff line number Diff line change 1515// specific language governing permissions and limitations
1616// under the License.
1717
18- //! This module defines
18+ //! This module defines:
1919//! 1) a list of constants for every keyword
2020//! 2) an `ALL_KEYWORDS` array with every keyword in it
2121//! This is not a list of *reserved* keywords: some of these can be
You can’t perform that action at this time.
0 commit comments