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 6b827ec commit 519e409Copy full SHA for 519e409
1 file changed
.github/workflows/merge-approved-pr.yml
@@ -49,10 +49,10 @@ jobs:
49
# Compare actual branches against requirements
50
if [[ "$ACTUAL_BASE" != "$REQUIRED_BASE" ]] || [[ "$ACTUAL_HEAD" != "$REQUIRED_HEAD" ]]; then
51
echo "Skipping: PR must be from '$REQUIRED_HEAD' to '$REQUIRED_BASE'. Found $ACTUAL_HEAD -> $ACTUAL_BASE"
52
- echo "should_skip=true" >> $GITHUB_OUTPUT
+ echo "should_skip=true" >> "$GITHUB_OUTPUT"
53
else
54
echo "Branches match requirements: Source '$ACTUAL_HEAD' -> Target '$ACTUAL_BASE'."
55
- echo "should_skip=false" >> $GITHUB_OUTPUT
+ echo "should_skip=false" >> "$GITHUB_OUTPUT"
56
fi
57
58
# Check if the PR has the required approval status
0 commit comments