Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Set permissions for GitHub actions #1293

Merged
merged 1 commit into from May 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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