We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6aeaae commit 9f2ea50Copy full SHA for 9f2ea50
.github/workflows/backport.yml
@@ -26,15 +26,17 @@ jobs:
26
# history is needed to run git cherry-pick below
27
fetch-depth: 0
28
29
- - name: Use CLA approved github bot
30
- run: .github/scripts/use-cla-approved-github-bot.sh
31
-
32
- uses: actions/create-github-app-token@136412a57a7081aa63c935a2cc2918f76c34f514 # v1.11.2
33
id: app-token
34
with:
35
app-id: ${{ vars.OTELBOT_APP_ID }}
36
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
37
+ - name: Use CLA approved author
+ run: |
+ git config user.name otelbot
38
+ git config user.email [email protected]
39
+
40
- name: Create pull request
41
env:
42
NUMBER: ${{ github.event.inputs.number }}
0 commit comments