Merge pull request #1293 from turrisxyz/setup-permissions

chore: Set permissions for GitHub actions
This commit is contained in:
shirou 2022-05-05 17:35:40 +09:00 committed by GitHub
commit def6865402
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 24 additions and 0 deletions

View File

@ -1,5 +1,8 @@
on: [push, pull_request]
name: Build Test
permissions:
contents: read
jobs:
build_test_v3:
strategy:

View File

@ -2,8 +2,14 @@ name: "Pull Request Labeler"
on:
- pull_request_target
permissions:
contents: read
jobs:
triage:
permissions:
contents: read # for actions/labeler to determine modified files
pull-requests: write # for actions/labeler to add labels to PRs
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4

View File

@ -4,8 +4,14 @@ on:
push:
pull_request:
permissions:
contents: read
jobs:
golangci:
permissions:
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
name: lint
runs-on: ubuntu-latest
steps:

View File

@ -3,6 +3,9 @@ on:
- cron: '0 1 1 * *' # UTC 01:00 on the first day of the Month
name: Release
permissions:
contents: read
jobs:
release:
runs-on: ubuntu-latest

View File

@ -1,5 +1,8 @@
on: [push, pull_request]
name: Shellcheck
permissions:
contents: read
jobs:
shellcheck:
name: Shellcheck

View File

@ -1,5 +1,8 @@
on: [push, pull_request]
name: Test
permissions:
contents: read
jobs:
test_v3_module:
strategy: