-
-
Notifications
You must be signed in to change notification settings - Fork 540
20 lines (18 loc) · 924 Bytes
/
project-management.yml
File metadata and controls
20 lines (18 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Project Management
on:
schedule:
- cron: '0 2 * * *'
jobs:
# Best used in combination with actions/stale to assign a Stale label
unassign-issues-labeled-waiting-for-contributor-after-90-days-of-inactivity:
name: Unassign issues labeled "Stale" after 90 days of inactivity.
if: github.event_name == 'schedule'
runs-on: ubuntu-latest
steps:
- uses: boundfoxstudios/action-unassign-contributor-after-days-of-inactivity@main
with:
last-activity: 90 # After how many days the issue should get unassigned
labels: 'stale,help wanted' # Only search for issues containing this labels (comma-separated)
exempt-assignees: 'Octo,Cat,bendehaan,commjoen' # Exempt some assignees from being unassigned
# labels-to-remove: 'Stale' # Labels to remove after unassigning an issue
message: 'Automatically unassigned after 90 days of inactivity.'