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.
2 parents 8017e01 + e151c64 commit 2be91f3Copy full SHA for 2be91f3
1 file changed
.github/workflows/i18n-update-pull.yml
@@ -126,12 +126,14 @@ jobs:
126
127
- name: Create a new i18n PR, comment on source PR and reaction
128
uses: actions/github-script@v7
129
+ env:
130
+ ISSUE_TITLE: ${{ github.event.issue.title }}
131
with:
132
github-token: ${{ steps.generate-token.outputs.token }}
133
script: |
134
const repoURL = context.payload.repository.html_url;
135
const branchURL = `${repoURL}/tree/${process.env.NEW_BRANCH}`;
- const prTitle = `i18n: ${{ github.event.issue.title }}`;
136
+ const prTitle = `i18n: ${process.env.ISSUE_TITLE}`;
137
const prBody = `## What type of PR is this? (check all applicable)
138
139
- [ ] ✨ Feature
0 commit comments