[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.

update actions (#7)

authored by

Nate Moore and committed by
GitHub
(Mar 2, 2026, 6:01 PM EST) 2fcdec06 950d20fb

+20 -7
+7 -3
.github/workflows/format.yml
··· 10 10 type: string 11 11 secrets: 12 12 BOT_APP_ID: 13 - description: 'The GitHub App ID for authenticating with the GitHub API' 13 + description: "The GitHub App ID for authenticating with the GitHub API" 14 14 required: true 15 15 BOT_PRIVATE_KEY: 16 - description: 'The GitHub App Private Key for authenticating with the GitHub API' 16 + description: "The GitHub App Private Key for authenticating with the GitHub API" 17 17 required: true 18 18 19 19 jobs: 20 20 format: 21 21 if: github.repository_owner == 'bombshell-dev' 22 22 runs-on: ubuntu-latest 23 + permissions: 24 + contents: write 25 + pull-requests: write 26 + 23 27 steps: 24 28 - name: Generate a token 25 29 id: bot-token ··· 27 31 with: 28 32 app-id: ${{ secrets.BOT_APP_ID }} 29 33 private-key: ${{ secrets.BOT_PRIVATE_KEY }} 30 - 34 + 31 35 - uses: actions/checkout@v4 32 36 with: 33 37 ref: ${{ github.head_ref }}
+6 -2
.github/workflows/preview.yml
··· 3 3 workflow_call: 4 4 inputs: 5 5 publish: 6 - description: 'The directory to publish to pkg.pr.new' 6 + description: "The directory to publish to pkg.pr.new" 7 7 default: "./packages/**" 8 8 required: false 9 9 type: string 10 10 template: 11 - description: 'The directory of templates to publish to StackBlitz' 11 + description: "The directory of templates to publish to StackBlitz" 12 12 default: "./examples/**" 13 13 required: false 14 14 type: string ··· 17 17 preview: 18 18 if: github.repository_owner == 'bombshell-dev' 19 19 runs-on: ubuntu-latest 20 + permissions: 21 + contents: write 22 + pull-requests: write 23 + id-token: write 20 24 21 25 steps: 22 26 - uses: actions/checkout@v4
+6 -2
.github/workflows/publish.yml
··· 4 4 workflow_call: 5 5 secrets: 6 6 BOT_APP_ID: 7 - description: 'The GitHub App ID for authenticating with the GitHub API' 7 + description: "The GitHub App ID for authenticating with the GitHub API" 8 8 required: true 9 9 BOT_PRIVATE_KEY: 10 - description: 'The GitHub App Private Key for authenticating with the GitHub API' 10 + description: "The GitHub App Private Key for authenticating with the GitHub API" 11 11 required: true 12 12 13 13 jobs: 14 14 publish: 15 15 if: github.repository_owner == 'bombshell-dev' 16 16 runs-on: ubuntu-latest 17 + permissions: 18 + contents: write 19 + pull-requests: write 20 + id-token: write 17 21 18 22 steps: 19 23 - name: Generate a token
+1
.gitignore
··· 1 + node_modules