We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c95142c commit 7d28870Copy full SHA for 7d28870
1 file changed
.github/workflows/release.yml
@@ -113,14 +113,14 @@ jobs:
113
echo "CAN_MERGE=true" >> $GITHUB_ENV
114
115
- name: ⏩ Merge stable with main, push main
116
- if: ${{ env.CAN_MERGE == "true" }}
+ if: env.CAN_MERGE == "true"
117
run: |
118
git merge --abort
119
git merge -S stable
120
git push origin main
121
122
- name: ⏭ Create pull request from stable to main
123
- if: ${{ env.CAN_MERGE != "true" }}
+ if: env.CAN_MERGE != "true"
124
uses: thomaseizinger/create-pull-request@1.0.0
125
env:
126
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments