Skip to content

Commit

Permalink
Merge pull request #1293 from turrisxyz/setup-permissions
Browse files Browse the repository at this point in the history
chore: Set permissions for GitHub actions
  • Loading branch information
shirou committed May 5, 2022
2 parents 009ec50 + 3a2c8dd commit def6865
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build_test.yml
@@ -1,5 +1,8 @@
on: [push, pull_request]
name: Build Test
permissions:
contents: read

jobs:
build_test_v3:
strategy:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/labeler.yml
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/lint.yml
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/shellcheck.yml
@@ -1,5 +1,8 @@
on: [push, pull_request]
name: Shellcheck
permissions:
contents: read

jobs:
shellcheck:
name: Shellcheck
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
@@ -1,5 +1,8 @@
on: [push, pull_request]
name: Test
permissions:
contents: read

jobs:
test_v3_module:
strategy:
Expand Down

0 comments on commit def6865

Please sign in to comment.