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.
1 parent 180fa5d commit 9290cabCopy full SHA for 9290cab
.github/workflows/unassign-issue.yml
@@ -85,7 +85,7 @@ jobs:
85
days-before-close: -1 # Don't close stale issues
86
exempt-issue-labels: ${{ env.PINNED_LABEL }}
87
remove-stale-when-updated: false
88
- only-labels: ${{ env.ASSIGNED_LABEL }}
+ include-only-assigned: true
89
90
- name: Unassign stale issues and remove labels
91
uses: actions/github-script@v7
@@ -107,8 +107,7 @@ jobs:
107
const staleIssues = await github.paginate(github.rest.issues.listForRepo, {
108
owner, repo,
109
state: 'open',
110
- labels: staleLabel,
111
- assignee: '*'
+ labels: staleLabel
112
});
113
114
for (const issue of staleIssues) {
0 commit comments