Skip to content

Commit 519e409

Browse files
committed
INFRA-2925: Linting fix
1 parent 6b827ec commit 519e409

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/merge-approved-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
# Compare actual branches against requirements
5050
if [[ "$ACTUAL_BASE" != "$REQUIRED_BASE" ]] || [[ "$ACTUAL_HEAD" != "$REQUIRED_HEAD" ]]; then
5151
echo "Skipping: PR must be from '$REQUIRED_HEAD' to '$REQUIRED_BASE'. Found $ACTUAL_HEAD -> $ACTUAL_BASE"
52-
echo "should_skip=true" >> $GITHUB_OUTPUT
52+
echo "should_skip=true" >> "$GITHUB_OUTPUT"
5353
else
5454
echo "Branches match requirements: Source '$ACTUAL_HEAD' -> Target '$ACTUAL_BASE'."
55-
echo "should_skip=false" >> $GITHUB_OUTPUT
55+
echo "should_skip=false" >> "$GITHUB_OUTPUT"
5656
fi
5757
5858
# Check if the PR has the required approval status

0 commit comments

Comments
 (0)