We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f2f0ed commit abca9ebCopy full SHA for abca9eb
.github/workflows/release.yml
@@ -108,7 +108,7 @@ jobs:
108
- name: ☑ Check if merge of stable to main is possible
109
run: |
110
git checkout main
111
- echo "CAN_MERGE=$(git merge --no-commit --no-ff stable)" >> $GITHUB_ENV
+ git merge --no-commit --no-ff stable > /dev/null ; if [ $? -eq 0 ] ; then echo "CAN_MERGE=true" >> $GITHUB_ENV ; else echo "CAN_MERGE=false" >> $GITHUB_ENV ; fi
112
113
- name: ⏩ Merge stable with main, push main
114
if: ${{ success() }}
0 commit comments