Skip to content

Commit 91cbb32

Browse files
authored
Update otelbot token workflows to use client IDs (#8580)
1 parent 38dfb98 commit 91cbb32

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
3333
id: otelbot-token
3434
with:
35-
app-id: ${{ vars.OTELBOT_APP_ID }}
35+
client-id: ${{ vars.OTELBOT_CLIENT_ID }}
3636
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
3737

3838
- name: Create pull request

.github/workflows/detect-api-changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
2222
id: otelbot-token
2323
with:
24-
app-id: ${{ vars.OTELBOT_APP_ID }}
24+
client-id: ${{ vars.OTELBOT_CLIENT_ID }}
2525
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
2626

2727
- name: Check for API changes and update PR

.github/workflows/prepare-patch-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
5151
id: otelbot-token
5252
with:
53-
app-id: ${{ vars.OTELBOT_APP_ID }}
53+
client-id: ${{ vars.OTELBOT_CLIENT_ID }}
5454
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
5555

5656
- name: Create pull request

.github/workflows/prepare-release-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
6767
id: otelbot-token
6868
with:
69-
app-id: ${{ vars.OTELBOT_APP_ID }}
69+
client-id: ${{ vars.OTELBOT_CLIENT_ID }}
7070
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
7171

7272
- name: Create pull request against the release branch
@@ -122,7 +122,7 @@ jobs:
122122
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
123123
id: otelbot-token
124124
with:
125-
app-id: ${{ vars.OTELBOT_APP_ID }}
125+
client-id: ${{ vars.OTELBOT_CLIENT_ID }}
126126
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
127127

128128
- name: Create pull request against main

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
215215
id: otelbot-token
216216
with:
217-
app-id: ${{ vars.OTELBOT_APP_ID }}
217+
client-id: ${{ vars.OTELBOT_CLIENT_ID }}
218218
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
219219

220220
- name: Create pull request against main

0 commit comments

Comments
 (0)