Skip to content

Commit ebf43bb

Browse files
fix: update find-exercise workflow to also work on closed issues (#71)
1 parent 3627ef8 commit ebf43bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/find-exercise-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
const response = await github.rest.issues.listForRepo({
3939
owner: context.repo.owner,
4040
repo: context.repo.repo,
41-
state: 'open',
41+
state: 'all',
4242
sort: 'created', // Sort by creation date
4343
direction: 'desc', // Newest first (descending order)
4444
per_page: 50

0 commit comments

Comments
 (0)