Skip to content
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
ci:
name: 🧪 Test & lint
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/initiate_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
type: string
pattern: "^[0-9]+\\.[0-9]+\\.[0-9]+$"

permissions:
contents: write
pull-requests: write

jobs:
init_release:
name: 🚀 Create release PR
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
branches:
- main

permissions:
contents: write

jobs:
Release:
name: 🚀 Release
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/scheduled_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
# Monday at 9:00 UTC
- cron: "0 9 * * 1"

permissions:
contents: read

jobs:
test:
environment: ci
Expand Down
Loading