Skip to content

Commit d11163a

Browse files
committed
fix(ci): add --repo flag to localization reminder workflow..maybe
1 parent 7842cc1 commit d11163a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/notify-localization-team.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- name: Post localization reminder
1717
run: |
1818
EXISTING=$(gh pr view "${{ github.event.pull_request.number }}" \
19+
--repo "${{ github.repository }}" \
1920
--json comments \
2021
--jq '[.comments[] | select(.body | contains("localization ticket"))] | length')
2122
@@ -24,7 +25,9 @@ jobs:
2425
exit 0
2526
fi
2627
27-
gh pr comment "${{ github.event.pull_request.number }}" --body "$(cat <<'EOF'
28+
gh pr comment "${{ github.event.pull_request.number }}" \
29+
--repo "${{ github.repository }}" \
30+
--body "$(cat <<'EOF'
2831
**Localization reminder:** This PR adds or modifies \`.i18n.ts\` files.
2932
3033
Please create a Jira ticket for the localization manager to initiate translation of any new or updated strings in Transifex. See [LOC-1766](https://commercetools.atlassian.net/browse/LOC-1766) as an example.

0 commit comments

Comments
 (0)