You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/home/runner/work/_temp/0ca956c4-770c-4668-953e-02259d40c527.sh: line 1: unexpected EOF while looking for matching `"'
Process completed with exit code 2.
Root Cause
The workflow step uses a shell echo with double quotes wrapping GitHub expression interpolation:
run: echo "PR #${{ github.event.pull_request.number }} was merged into ${{ github.event.pull_request.base.ref }}"
When this workflow runs on the pull_request: closed event and GitHub expands the expressions, the resulting shell script has an unmatched double quote — likely because one of the ${{ }} expressions expanded to an empty or unexpected value containing a newline/quote, breaking the bash string literal.
Suggested Fix
Wrap the run command more defensively, or use single quotes for the static parts:
- name: Do somethingrun: | echo "PR #${{ github.event.pull_request.number }} was merged into ${{ github.event.pull_request.base.ref }}"
Using the | (literal block scalar) ensures the YAML parser doesn't interfere with the quoting. Alternatively, assign values to environment variables:
- name: Do somethingenv:
PR_NUMBER: ${{ github.event.pull_request.number }}BASE_REF: ${{ github.event.pull_request.base.ref }}run: echo "PR #${PR_NUMBER} was merged into ${BASE_REF}"
The env approach is the safest since it avoids any shell injection or quoting issues from expression expansion.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Small documentation-only change: adds a
// Vue compiler configurationcomment above thevueblock innuxt.config.tsfor readability.Changes
nuxt.config.ts: added a clarifying comment, no behavioral change.https://claude.ai/code/session_01LVGVWgHtoE7BTRkJZogkd3
Generated by Claude Code