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 e153330 commit 2668ff2Copy full SHA for 2668ff2
.github/workflows/mike-app-test.yaml
@@ -0,0 +1,19 @@
1
+name: Mike App Test
2
+
3
+jobs:
4
+ create-pr:
5
+ runs-on: ubuntu-latest
6
7
+ steps:
8
+ - uses: actions/checkout@v3 # Check out the code
9
+ - name: Modify a file # Example step where your workflow makes changes
10
+ run: echo "Changes made by workflow!" >> README.md
11
12
+ - uses: peter-evans/create-pull-request@v4 # Create the PR
13
+ with:
14
+ token: ${{ secrets.MIKE_JAVA_BOT_SECRET }}
15
+ commit-message: 'Update README from the workflow'
16
+ title: 'Workflow Made Changes'
17
+ body: 'This PR automatically updates the README'
18
+ branch: 'workflow-generated-pr'
19
+ base: 'main'
0 commit comments