[READ-ONLY] Mirror of https://github.com/bombshell-dev/automation. GitHub Actions for the Bombshell organization
ci
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: add secrets to workflows

Nate Moore (Dec 29, 2024, 12:51 AM -0600) e6b43f3f 675dba81

+21
+7
.github/workflows/add-issue-to-project.yml
··· 2 2 3 3 on: 4 4 workflow_call: 5 + secrets: 6 + BOT_APP_ID: 7 + description: 'The GitHub App ID for authenticating with the GitHub API' 8 + required: true 9 + BOT_PRIVATE_KEY: 10 + description: 'The GitHub App Private Key for authenticating with the GitHub API' 11 + required: true 5 12 6 13 jobs: 7 14 issue:
+7
.github/workflows/format.yml
··· 8 8 default: "format" 9 9 required: false 10 10 type: string 11 + secrets: 12 + BOT_APP_ID: 13 + description: 'The GitHub App ID for authenticating with the GitHub API' 14 + required: true 15 + BOT_PRIVATE_KEY: 16 + description: 'The GitHub App Private Key for authenticating with the GitHub API' 17 + required: true 11 18 12 19 jobs: 13 20 format:
+7
.github/workflows/preview.yml
··· 12 12 default: "./examples/**" 13 13 required: false 14 14 type: string 15 + secrets: 16 + BOT_APP_ID: 17 + description: 'The GitHub App ID for authenticating with the GitHub API' 18 + required: true 19 + BOT_PRIVATE_KEY: 20 + description: 'The GitHub App Private Key for authenticating with the GitHub API' 21 + required: true 15 22 16 23 jobs: 17 24 preview: