Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .asf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,17 @@ github:
rebase: false
features:
issues: true
protected_branches:
main:
required_status_checks:
contexts:
- "codestyle"
- "lint"
- "benchmark-lint"
- "compile"
- "docs"
- "compile-no-std"
- "test (stable)"
- "test (beta)"
- "test (nightly)"
- "Release Audit Tool (RAT)"
1 change: 1 addition & 0 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ on:
branches:
- main
pull_request:
merge_group:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


jobs:

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,17 @@

name: Rust

on: [push, pull_request]
on:
push:
branches-ignore:
- 'gh-readonly-queue/**'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this for? Can we perhaps add some comments explaining what this branch ignore is for?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added

pull_request:
merge_group:

permissions:
contents: read

jobs:

codestyle:
runs-on: ubuntu-latest
steps:
Expand Down