Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/auto-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ on:
# Run every month on the 1st day at 08:15 AM.
- cron: '15 8 * 1 *'

permissions:
contents: read

jobs:
create-monthly-tag:
permissions:
contents: write # required for pushing git tags
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
schedule:
- cron: "21 6 * * 1"

permissions:
contents: read

jobs:
analyze:
name: Analyze Go (${{ matrix.target_arch }})
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
codespell:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/push-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
paths:
- "Dockerfile"

permissions:
contents: read

jobs:
build-and-push:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/unit-test-on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
branches: ["**"]

permissions:
contents: read

jobs:
legal:
name: Check licenses of dependencies
Expand Down
Loading