File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,17 @@ jobs:
22
22
23
23
- name : merge ${{ github.event.inputs.branch }}-next into ${{ github.event.inputs.branch }}
24
24
working-directory : meta-aws-demos
25
+ env :
26
+ BRANCH_NAME : ${{ github.event.inputs.branch }}
25
27
run : |
26
28
git config --global user.name aws-iot-embedded-linux-ci
27
29
git config --global user.email [email protected]
28
- git merge --ff-only origin/${{ github.event.inputs.branch } }-next
30
+ git merge --ff-only origin/${BRANCH_NAME }-next
29
31
30
32
- name : push ${{ github.event.inputs.branch }}
31
33
working-directory : meta-aws-demos
34
+ env :
35
+ BRANCH_NAME : ${{ github.event.inputs.branch }}
32
36
run : |
33
- git push -u origin ${{ github.event.inputs.branch } }
37
+ git push -u origin ${BRANCH_NAME }
34
38
You can’t perform that action at this time.
0 commit comments