There was an error while loading. Please reload this page.
1 parent 5b3f544 commit f3566c8Copy full SHA for f3566c8
1 file changed
.github/workflows/token-expiry-check.yml
@@ -46,7 +46,7 @@ jobs:
46
VSCE_RESULT: ${{ steps.vsce.outcome }}
47
OVSX_RESULT: ${{ steps.ovsx.outcome }}
48
run: |
49
- EXISTING=$(gh issue list --label "token-expiry" --state open --json number --jq length)
+ EXISTING=$(gh issue list -R "$GITHUB_REPOSITORY" --label "token-expiry" --state open --json number --jq length)
50
if [ "$EXISTING" != "0" ]; then
51
echo "Issue already exists, skipping"
52
exit 0
@@ -70,7 +70,7 @@ jobs:
70
BODY+="### 注意\n"
71
BODY+="- Azure DevOps は **kashihara@live.jp** でログイン\n"
72
BODY+="- Mac ブラウザでは AD アカウント干渉でエラーになる場合あり、Windows Edge を使う\n"
73
- gh issue create \
+ gh issue create -R "$GITHUB_REPOSITORY" \
74
--title "Marketplace token expired" \
75
--label "token-expiry" \
76
--body "$(echo -e "$BODY")"
0 commit comments