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

fix: vars -> secrets

Nate Moore (Dec 29, 2024, 12:45 AM -0600) 675dba81 1d582370

+3 -3
+1 -1
.github/workflows/add-issue-to-project.yml
··· 11 11 id: bot-token 12 12 uses: actions/create-github-app-token@v1 13 13 with: 14 - app-id: ${{ vars.BOT_APP_ID }} 14 + app-id: ${{ secrets.BOT_APP_ID }} 15 15 private-key: ${{ secrets.BOT_PRIVATE_KEY }} 16 16 17 17 - name: Get project data
+1 -1
.github/workflows/format.yml
··· 18 18 id: bot-token 19 19 uses: actions/create-github-app-token@v1 20 20 with: 21 - app-id: ${{ vars.BOT_APP_ID }} 21 + app-id: ${{ secrets.BOT_APP_ID }} 22 22 private-key: ${{ secrets.BOT_PRIVATE_KEY }} 23 23 24 24 - uses: actions/checkout@v4
+1 -1
.github/workflows/preview.yml
··· 23 23 id: bot-token 24 24 uses: actions/create-github-app-token@v1 25 25 with: 26 - app-id: ${{ vars.BOT_APP_ID }} 26 + app-id: ${{ secrets.BOT_APP_ID }} 27 27 private-key: ${{ secrets.BOT_PRIVATE_KEY }} 28 28 29 29 - uses: actions/checkout@v4