Skip to content

Commit 3eb02c3

Browse files
authored
Fix secret references in workflow files (DataDog#21154)
1 parent 8976bc3 commit 3eb02c3

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/backport-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: token-generator
2525
with:
2626
app-id: ${{ secrets.DD_AGENT_INTEGRATIONS_BOT_APP_ID }}
27-
private-key: ${{ secrets.DD_AGENT_INTEGRATIONS_BOT_PRIVATE_KEY_2 }}
27+
private-key: ${{ secrets.DD_AGENT_INTEGRATIONS_BOT_PRIVATE_KEY }}
2828
repositories: integrations-core
2929
- uses: tibdex/backport@9565281eda0731b1d20c4025c43339fb0a23812e # v2.0.4
3030
with:

.github/workflows/labeler-community.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
uses: ./.github/workflows/labeler-reusable.yml
2121
secrets:
2222
app-id: "${{ secrets.DD_AGENT_INTEGRATIONS_BOT_APP_ID }}"
23-
private-key: "${{ secrets.DD_AGENT_INTEGRATIONS_BOT_PRIVATE_KEY_2 }}"
23+
private-key: "${{ secrets.DD_AGENT_INTEGRATIONS_BOT_PRIVATE_KEY }}"

.github/workflows/update-agent-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
id: token-generator
4242
with:
4343
app-id: ${{ secrets.DD_AGENT_INTEGRATIONS_BOT_APP_ID }}
44-
private-key: ${{ secrets.DD_AGENT_INTEGRATIONS_BOT_PRIVATE_KEY_2 }}
44+
private-key: ${{ secrets.DD_AGENT_INTEGRATIONS_BOT_PRIVATE_KEY }}
4545
repositories: integrations-core
4646
- name: Create Pull Request
4747
id: cpr

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
id: token-generator
3333
with:
3434
app-id: ${{ secrets.DD_AGENT_INTEGRATIONS_BOT_APP_ID }}
35-
private-key: ${{ secrets.DD_AGENT_INTEGRATIONS_BOT_PRIVATE_KEY_2 }}
35+
private-key: ${{ secrets.DD_AGENT_INTEGRATIONS_BOT_PRIVATE_KEY }}
3636
repositories: integrations-core
3737
- name: Update dependencies
3838
run: |-

0 commit comments

Comments
 (0)