Skip to content

Commit f338fdd

Browse files
Trotttargos
authored andcommittedJul 13, 2021
tools: add GitHub Action to run find-inactive-collaborators.mjs
Add a GitHub Action for find-inactive-collaborators.mjs that will run it and list collaborators who have been inactive for more than a year. It will run when manually triggered by a collaborator and on a schedule of once a month. PR-URL: #39335 Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 1068182 commit f338fdd

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Find inactive collaborators
2+
3+
on:
4+
schedule:
5+
# Run on the 15th day of the month at 4:05 AM UTC.
6+
- cron: '5 4 15 * *'
7+
8+
workflow_dispatch:
9+
10+
jobs:
11+
find:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- run: tools/find-inactive-collaborators.mjs '1 year ago'

0 commit comments

Comments
 (0)
Please sign in to comment.