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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@ jobs:
uses: ./.github/workflows/test.yml
permissions:
contents: read
secrets: inherit
secrets:
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}

docs:
needs: prep-release
uses: ./.github/workflows/docs.yml
permissions:
contents: write
secrets: inherit
secrets:
GH_DFETCH_ORG_DEPLOY: ${{ secrets.GH_DFETCH_ORG_DEPLOY }}
with:
release_id: ${{ needs.prep-release.outputs.release_id }}
3 changes: 3 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
required: false
type: string
default: ''
secrets:
GH_DFETCH_ORG_DEPLOY:
required: false

permissions:
contents: read
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Test

on:
workflow_call:
secrets:
CODACY_PROJECT_TOKEN:
required: false

permissions:
contents: read
Expand Down
Loading