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 09330d1 commit afcb5e0Copy full SHA for afcb5e0
.github/workflows/github-actions-update-rules.yml
@@ -46,12 +46,12 @@ jobs:
46
fi
47
git add .
48
git commit --signoff -m "flow: update rules based on new golden reference"
49
- - if: "${{ github.event.client_payload.branch }} != 'master'"
+ - if: "github.event.client_payload.branch != 'master'"
50
name: update rules pr
51
id: remote-update-pr
52
run: |
53
git push origin ${{ github.event.client_payload.branch }}
54
- - if: "steps.remote-update.outputs.has_update == 'true' && ${{ github.event.client_payload.branch }} == 'master'"
+ - if: "steps.remote-update.outputs.has_update == 'true' && github.event.client_payload.branch == 'master'"
55
name: Create Draft PR
56
uses: peter-evans/create-pull-request@v5
57
with:
0 commit comments