Skip to content

Commit 76b5a9c

Browse files
authored
chore(ci): Fix secrets passing for reusable workflows (#266)
Secrets need to be passed to reusable workflows.
1 parent cdb7afe commit 76b5a9c

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/backport.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ jobs:
2424
startsWith(github.event.comment.body, '/backport')
2525
)
2626
uses: opentdf/platform/.github/workflows/reusable_backport.yaml@main
27+
secrets:
28+
APP_ID: ${{ secrets.APP_ID }}
29+
AUTOMATION_KEY: ${{ secrets.AUTOMATION_KEY }}

.github/workflows/create-release-branch.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ jobs:
1313
permissions:
1414
id-token: write
1515
uses: opentdf/platform/.github/workflows/reusable_create-release-branch.yaml@main
16+
secrets:
17+
APP_ID: ${{ secrets.APP_ID }}
18+
AUTOMATION_KEY: ${{ secrets.AUTOMATION_KEY }}

.github/workflows/release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
contents: write
1919
pull-requests: write
2020
uses: opentdf/platform/.github/workflows/reusable_release-please.yaml@main
21+
secrets:
22+
APP_ID: ${{ secrets.APP_ID }}
23+
AUTOMATION_KEY: ${{ secrets.AUTOMATION_KEY }}
2124
release:
2225
runs-on: ubuntu-latest
2326
steps:

0 commit comments

Comments
 (0)