Skip to content

Commit e06a11b

Browse files
committed
TESTING
1 parent cf1d253 commit e06a11b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/auto-spotless.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -84,28 +84,28 @@ jobs:
8484
git config user.name otelbot
8585
git config user.email [email protected]
8686
87-
- uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
88-
id: otelbot-token
89-
with:
90-
app-id: ${{ vars.OTELBOT_APP_ID }}
91-
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
87+
# - uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
88+
# id: otelbot-token
89+
# with:
90+
# app-id: ${{ vars.OTELBOT_APP_ID }}
91+
# private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
9292

9393
- name: Apply patch and push
9494
env:
95-
GH_TOKEN: ${{ steps.otelbot-token.outputs.token }}
95+
GH_TOKEN: ${{ github.token }}
9696
run: |
9797
git apply patch
9898
git commit -a -m "./gradlew spotlessApply"
9999
git push
100100
101101
- if: success()
102102
env:
103-
GH_TOKEN: ${{ steps.otelbot-token.outputs.token }}
103+
GH_TOKEN: ${{ github.token }}
104104
run: |
105105
gh pr comment $PR_NUM --body "🔧 The result from \`./gradlew spotlessApply\` was committed to the PR branch."
106106
107107
- if: failure()
108108
env:
109-
GH_TOKEN: ${{ steps.otelbot-token.outputs.token }}
109+
GH_TOKEN: ${{ github.token }}
110110
run: |
111111
gh pr comment $PR_NUM --body "❌ The result from \`./gradlew spotlessApply\` could not be committed to the PR branch, see logs: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID."

0 commit comments

Comments
 (0)