Skip to content

Commit

Permalink
Fix usage of wrong secret in GitHub App token generation
Browse files Browse the repository at this point in the history
  • Loading branch information
ajhalili2006 authored Jun 25, 2024
1 parent 08d7fa7 commit c35700b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/triageops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ permissions:
contents: read

jobs:
######################## AUTOMATED ########################
new-thread-setup:
name: Setup new thread
runs-on: ubuntu-latest
Expand All @@ -30,7 +31,7 @@ jobs:
id: app-token
with:
app-id: ${{ secrets.GH_RTDEV_APP_ID }}
private-key: ${{ secrets.GH_RTDEV_APP_ID }}
private-key: ${{ secrets.GH_RTDEV_APP_KEY }}
owner: recaptime-dev

- uses: actions/checkout@v3
Expand Down Expand Up @@ -94,6 +95,7 @@ jobs:
section: role
token: ${{ steps.app-token.outputs.token }}

######################## MANUAL ACTIONS ########################
new-thread-setup-manual:
name: 'Setup new thread [manual triggered]'
runs-on: ubuntu-latest
Expand All @@ -105,7 +107,7 @@ jobs:
id: app-token
with:
app-id: ${{ secrets.GH_RTDEV_APP_ID }}
private-key: ${{ secrets.GH_RTDEV_APP_ID }}
private-key: ${{ secrets.GH_RTDEV_APP_KEY }}
owner: recaptime-dev

- uses: actions/checkout@v3
Expand Down

0 comments on commit c35700b

Please # to comment.