mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
Merge pull request #3634 from turrisxyz/naveen/feat/set-perms-actions
Set permissions for GitHub actions
This commit is contained in:
commit
027f2511c6
4 changed files with 16 additions and 0 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -5,8 +5,13 @@ on:
|
|||
branches: [master]
|
||||
schedule:
|
||||
- cron: '3 3 3 * *'
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
permissions:
|
||||
contents: none
|
||||
name: CI
|
||||
needs: [test, check, docs, rustfmt, clippy]
|
||||
runs-on: ubuntu-latest
|
||||
|
|
5
.github/workflows/post-release.yml
vendored
5
.github/workflows/post-release.yml
vendored
|
@ -3,8 +3,13 @@ on:
|
|||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
create-release:
|
||||
permissions:
|
||||
contents: write # for actions/create-release to create a release
|
||||
name: create-release
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
|
|
3
.github/workflows/rust-next.yml
vendored
3
.github/workflows/rust-next.yml
vendored
|
@ -2,6 +2,9 @@ name: rust-next
|
|||
on:
|
||||
schedule:
|
||||
- cron: '3 3 3 * *'
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
test:
|
||||
name: Test
|
||||
|
|
3
.github/workflows/spelling.yml
vendored
3
.github/workflows/spelling.yml
vendored
|
@ -1,6 +1,9 @@
|
|||
name: Spelling
|
||||
on: [pull_request]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
spelling:
|
||||
name: Spell Check with Typos
|
||||
|
|
Loading…
Reference in a new issue