We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e51242 commit 5519796Copy full SHA for 5519796
1 file changed
.github/workflows/ff-merge.yml
@@ -22,13 +22,17 @@ jobs:
22
23
- name: merge ${{ github.event.inputs.branch }}-next into ${{ github.event.inputs.branch }}
24
working-directory: meta-aws-demos
25
+ env:
26
+ BRANCH_NAME: ${{ github.event.inputs.branch }}
27
run: |
28
git config --global user.name aws-iot-embedded-linux-ci
29
git config --global user.email aws-iot-embedded-linux-ci@users.noreply.github.com
- git merge --ff-only origin/${{ github.event.inputs.branch }}-next
30
+ git merge --ff-only origin/${BRANCH_NAME}-next
31
32
- name: push ${{ github.event.inputs.branch }}
33
34
35
36
- git push -u origin ${{ github.event.inputs.branch }}
37
+ git push -u origin ${BRANCH_NAME}
38
0 commit comments