Skip to content

Commit b9662ee

Browse files
committed
iterate on how to open PRs
1 parent bdfe7fb commit b9662ee

File tree

1 file changed

+22
-8
lines changed

1 file changed

+22
-8
lines changed

.github/workflows/dispatch_update.yml

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,30 @@ jobs:
4444
make INSTANCE=$INSTANCE update-all
4545
env:
4646
INSTANCE: ${{ inputs.instance }}
47-
- name: Commit files
48-
run: |
49-
git config --local user.email "[email protected]"
50-
git config --local user.name "github-actions[bot]"
51-
git add *.lock
52-
git commit -m "Updated all tools ($INSTANCE)" || true
53-
env:
54-
INSTANCE: ${{ inputs.instance }}
47+
# - name: Commit files
48+
# run: |
49+
# git config --local user.email "[email protected]"
50+
# git config --local user.name "github-actions[bot]"
51+
# git add *.lock
52+
# git commit -m "Updated all tools of $INSTANCE" || true
53+
# env:
54+
# INSTANCE: ${{ inputs.instance }}
5555
- name: Create Pull Request
5656
uses: peter-evans/create-pull-request@v7
57+
with:
58+
commit-message: Update all tools for $INSTANCE
59+
committer: CESNETbot <[email protected]>
60+
body: |
61+
ran the following:
62+
- make INSTANCE=$INSTANCE lint
63+
- make INSTANCE=$INSTANCE fix
64+
- make INSTANCE=$INSTANCE update-all
65+
title: 'Update all tools of $INSTANCE'
66+
labels: automated
67+
assignees: martenson
68+
reviewers: martenson
69+
env:
70+
INSTANCE: ${{ inputs.instance }}
5771
# - name: Push changes
5872
# uses: ad-m/github-push-action@master
5973
# with:

0 commit comments

Comments
 (0)