We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef62f19 commit 0c16d7aCopy full SHA for 0c16d7a
.github/workflows/mike-app-test.yaml
@@ -11,9 +11,16 @@ jobs:
11
- name: Modify a file # Example step where your workflow makes changes
12
run: echo "Changes made by workflow!" >> README.md
13
14
+ - name: Generate a token
15
+ id: generate-token
16
+ uses: actions/create-github-app-token@v1
17
+ with:
18
+ app-id: ${{ vars.APP_ID }}
19
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
20
+
21
- uses: peter-evans/create-pull-request@v4 # Create the PR
22
with:
- token: ${{ secrets.MIKE_JAVA_BOT_SECRET }}
23
+ token: ${{ steps.generate-token.outputs.token }}
24
commit-message: 'Update README from the workflow'
25
title: 'Workflow Made Changes'
26
body: 'This PR automatically updates the README'
0 commit comments