We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5974b08 commit 5582231Copy full SHA for 5582231
1 file changed
.github/workflows/pr.yml
@@ -33,12 +33,12 @@ jobs:
33
34
action=plan
35
36
- if [ "$EVENT_NAME" == "push" && "$BRANCH" == "main" ]; then
+ if [[ "$EVENT_NAME" == "push" && "$BRANCH" == "main" ]]; then
37
event_type="merge"
38
action="apply"
39
fi
40
41
- if [ ("$EVENT_NAME" == "push" || "$EVENT_NAME" == "release") && "$TAG" != "" ]; then
+ if [[ ("$EVENT_NAME" == "push" || "$EVENT_NAME" == "release") && "$TAG" != "" ]]; then
42
event_type="release"
43
44
0 commit comments