Skip to content

Commit adfc42a

Browse files
committed
fix automation variable
1 parent b609d4b commit adfc42a

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
id: app-token
9292
with:
9393
app-id: 1248576
94-
private-key: ${{ secrets.APP_RENOVATE_HELPER_PRIVATE_KEY }}
94+
private-key: ${{ secrets.AUTOMATION_APP_PRIVATE_KEY }}
9595
- name: Checkout
9696
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9797
with:

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id: app-token
2626
with:
2727
app-id: 1248576
28-
private-key: ${{ secrets.APP_RENOVATE_HELPER_PRIVATE_KEY }}
28+
private-key: ${{ secrets.AUTOMATION_APP_PRIVATE_KEY }}
2929
- uses: srvaroa/labeler@0a20eccb8c94a1ee0bed5f16859aece1c45c3e55 # v1.13.0
3030
env:
3131
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

.github/workflows/renovate-custom-hooks.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
id: app-token
2727
with:
2828
app-id: 1248576
29-
private-key: ${{ secrets.APP_RENOVATE_HELPER_PRIVATE_KEY }}
29+
private-key: ${{ secrets.AUTOMATION_APP_PRIVATE_KEY }}
3030

3131
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
3232
with:
@@ -82,11 +82,11 @@ jobs:
8282
--slurpfile fileChanges "$FILE_CHANGES_JSON_FILE" \
8383
'{
8484
query: "mutation ($input: CreateCommitOnBranchInput!) {
85-
createCommitOnBranch(input: $input) {
86-
commit {
87-
url
88-
}
89-
}
85+
createCommitOnBranch(input: $input) {
86+
commit {
87+
url
88+
}
89+
}
9090
}",
9191
variables: {
9292
input: {

0 commit comments

Comments
 (0)