We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 057a88e commit 9736a91Copy full SHA for 9736a91
.github/workflows/tests-push.yml
@@ -46,6 +46,7 @@ jobs:
46
runs-on: ubuntu-latest
47
steps:
48
- uses: actions/checkout@v4
49
+ ref: master
50
51
- name: Write a file
52
shell: bash
@@ -64,11 +65,12 @@ jobs:
64
65
- name: Commit and Push Changes
66
if: steps.git-status.outputs.changes != ''
67
run: |
- git checkout -b fabric-upgrade-vx.y.z
68
+ # git checkout -b fabric-upgrade-vx.y.z
69
git add .
70
git commit -m "[GH Actions] Update Fabric to vx.y.z."
71
gh pr create \
72
--title "[Fabric upgrade] - reference vx.y.z" \
73
+ --head fabric-upgrade-vx.y.z \
74
--body "Reference in factories Cloud Foundation Fabric modules vx.y.z"
75
env:
76
GH_TOKEN: ${{ secrets.GH_TOKEN }}
0 commit comments