Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ env:
RUST_BACKTRACE: short
RUSTUP_MAX_RETRIES: 10

permissions:
contents: read

jobs:
coverage:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ env:
RUSTFLAGS: "-D warnings -W unreachable-pub -W bare-trait-objects"
RUSTUP_MAX_RETRIES: 10

permissions:
contents: read

jobs:
rust:
if: ${{ github.repository == 'rust-lang/rust-analyzer' || github.event_name == 'workflow_dispatch' }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rustc-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
# Run at 04:00 UTC every Monday and Thursday
- cron: '0 4 * * 1,4'

permissions:
contents: read
Copy link
Copy Markdown
Member

@lnicola lnicola May 15, 2026

Choose a reason for hiding this comment

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

I think this also needs pull-requests: write

View changes since the review


jobs:
pull:
if: github.repository == 'rust-lang/rust-analyzer'
Expand Down
Loading