Skip to content

Commit 440ebc4

Browse files
authored
Fix repo param for gh cli
1 parent a902f59 commit 440ebc4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/issueSnapshot.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- run: |
11-
gh issue list -F owner=$OWNER -F name=$REPO --limit 1000 --search "is:issue is:open sort:reactions-+1-desc" --json number,url,reactionGroups,title,labels > $REPO.$(date +"%Y-%m-%d").json
11+
gh issue list -R $GITHUB_REPOSITORY --limit 1000 --search "is:issue is:open sort:reactions-+1-desc" --json number,url,reactionGroups,title,labels > $REPO.$(date +"%Y-%m-%d").json
1212
env:
1313
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14-
OWNER: ${{ github.repository_owner }}
1514
REPO: ${{ github.event.repository.name }}
1615
- uses: actions/upload-artifact@v3
1716
with:

0 commit comments

Comments
 (0)