Skip to content

Commit

Permalink
Add ability to pass GITHUB_APP_ID and GITHUB_APP_KEY to Docker contai…
Browse files Browse the repository at this point in the history
…ner via `github-app-id` and `github-app-key` secrets
  • Loading branch information
jlantz committed Sep 12, 2024
1 parent 5f7562f commit aa2ba60
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/feature-test-2gp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ on:
required: true
github-token:
required: true
github-app-id:
required: false
github-app-key:
required: false

jobs:
feature-test:
Expand All @@ -43,6 +47,8 @@ jobs:
DEV_HUB_CLIENT_ID: "${{ secrets.dev-hub-client-id }}"
DEV_HUB_PRIVATE_KEY: "${{ secrets.dev-hub-private-key }}"
CUMULUSCI_SERVICE_github: '{ "username": "${{ github.actor }}", "token": "${{ secrets.github-token }}", "email": "${{ secrets.gh-email }}" }'
GITHUB_APP_ID: "${{ secrets.github-app-id }}"
GITHUB_APP_KEY: "${{ secrets.github-app-key }}"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit aa2ba60

Please sign in to comment.