Unassign contributors from issues after a delay #360
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unassign contributors from issues after a delay | |
on: | |
schedule: | |
- cron: '39 4 * * *' | |
jobs: | |
# Best used in combination with actions/stale to assign a Stale label | |
unassign-good-first-issues-after-90-days-of-inactivity: | |
if: github.repository == 'OpenRefine/OpenRefine' | |
name: Unassign issues labeled "good first issue" after 45 days of inactivity. | |
runs-on: ubuntu-latest | |
steps: | |
- uses: boundfoxstudios/action-unassign-contributor-after-days-of-inactivity@v1.0.3 | |
with: | |
last-activity: 45 # After how many days the issue should get unassigned | |
labels: 'good first issue' # Only search for issues containing this labels (comma-separated) | |
exempt-assignees: '' # Exempt some assignees from being unassigned (comma-separated) | |
labels-to-remove: '' # Labels to remove after unassigning an issue (comma-separated) | |
message: 'Automatically unassigned after 45 days of inactivity.' |