File tree 1 file changed +13
-9
lines changed
1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -52,22 +52,26 @@ jobs:
52
52
# git commit -m "Updated all tools of $INSTANCE" || true
53
53
# env:
54
54
# INSTANCE: ${{ inputs.instance }}
55
+ - name : Set output variables
56
+ id : vars
57
+ run : |
58
+ pr_title='Update all tools of $INSTANCE'
59
+ pr_body='ran the following: /
60
+ - make INSTANCE=$INSTANCE lint /
61
+ - make INSTANCE=$INSTANCE fix /
62
+ - make INSTANCE=$INSTANCE update-all\'
63
+ env :
64
+ INSTANCE : ${{ inputs.instance }}
55
65
- name : Create Pull Request
56
66
uses : peter-evans/create-pull-request@v7
57
67
with :
58
- commit-message : Update all tools for $INSTANCE
59
68
committer : CESNETbot <martin.cech@cesnet.cz>
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'
69
+ commit-message : ${{ steps.vars.outputs.pr_title }}
70
+ title : ${{ steps.vars.outputs.pr_title }}
71
+ body : ${{ steps.vars.outputs.pr_body }}
66
72
labels : automated
67
73
assignees : martenson
68
74
reviewers : martenson
69
- env :
70
- INSTANCE : ${{ inputs.instance }}
71
75
# - name: Push changes
72
76
# uses: ad-m/github-push-action@master
73
77
# with:
You can’t perform that action at this time.
0 commit comments