Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,16 @@ on:
- 'backend/**'
- '.github/workflows/backend.yml'

permissions:
contents: read

jobs:
generate-lockfile:
name: Generate lockfile
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request'}}
permissions:
contents: write
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

outputs:
files_changed: ${{ steps.verify-changed-files.outputs.files_changed }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/compress-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ on:
- '**.webp'
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
compress-images:
name: Compress images
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/frontend-admin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
paths:
- 'frontend-admin/**'
- '.github/workflows/frontend-admin.yml'

permissions:
contents: read

jobs:
run-tests:
name: Run tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/frontend-base-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ on:
default: false
type: boolean

permissions:
contents: read

jobs:
run-tests:
name: Run tests
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
paths:
- 'frontend/**'
- '.github/workflows/frontend.yml'

permissions:
contents: read

jobs:
run-tests:
name: Run tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/schema-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- 'backend/**'
- '.github/workflows/schema-validation.yml'

permissions:
contents: read

jobs:
validate-schema:
name: OpenAPI schema validation
Expand Down
Loading