Skip to content

Commit 2668ff2

Browse files
authored
Create mike-app-test.yaml
1 parent e153330 commit 2668ff2

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)