Skip to content

Commit f6afd06

Browse files
zgliczclaudegithub-actions[bot]
authored
JS-1339 Fix Jira labeling workflow failing on PR titles with backticks (#6407)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 01e81a3 commit f6afd06

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/LabelEslintPlugin.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@ jobs:
7878
- name: Extract Jira key from PR title
7979
id: extract-jira-key
8080
if: steps.check-rules.outputs.should_label == 'true'
81+
env:
82+
PR_TITLE: ${{ github.event.pull_request.title }}
8183
run: |
82-
PR_TITLE="${{ github.event.pull_request.title }}"
8384
# Extract Jira key (e.g., JS-1234) from the beginning of the title
8485
JIRA_KEY=$(echo "$PR_TITLE" | grep -oE '^[A-Z]+-[0-9]+' || echo "")
8586
if [ -z "$JIRA_KEY" ]; then

0 commit comments

Comments
 (0)