-
Notifications
You must be signed in to change notification settings - Fork 165
feat(membership): add inactive member detection #1061
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| name: Linters | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| schedule: | ||
| - cron: '0 0 * * *' | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| cull-inactive-members: | ||
| runs-on: ubuntu-latest | ||
|
Comment on lines
+11
to
+13
|
||
| steps: | ||
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 | ||
| with: | ||
| # This token needs read:org and public_repo scopes to check team membership and repo activity. | ||
| github-token: ${{ secrets.GH_USER_TOKEN }} | ||
| script: | | ||
| const { default: run } = await import('../tools/get-inactive-members.mjs'); | ||
|
avivkeller marked this conversation as resolved.
|
||
| await run({ github, context, core }); | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -52,6 +52,7 @@ Repo | Secret name | Expirati | |||||
| [`nodejs-private/security-release`][] | `SECURITY_WG_GITHUB_TOKEN` | 2027-01-30 | <https://github.com/nodejs/admin/pull/950> | | ||||||
| [`nodejs/require-in-the-middle`][] | `RELEASE_PLEASE_GITHUB_TOKEN` | 2027-01-30 | <https://github.com/nodejs/admin/pull/951> | | ||||||
| [`nodejs/orchestrion-js`][] | `RELEASE_PLEASE_GITHUB_TOKEN` | 2026-11-08 | <https://github.com/nodejs/admin/pull/1023> | | ||||||
| [`nodejs/admin`][] | `GH_USER_TOKEN` | | <https://github.com/nodejs/admin/pull/1061> | | ||||||
|
avivkeller marked this conversation as resolved.
|
||||||
|
|
||||||
| [`@nodejs-github-bot`]: https://github.com/nodejs-github-bot | ||||||
| [`nodejs-private/security-release`]: https://github.com/nodejs-private/security-release | ||||||
|
|
@@ -63,3 +64,4 @@ Repo | Secret name | Expirati | |||||
| [`nodejs/require-in-the-middle`]: https://github.com/nodejs/require-in-the-middle | ||||||
| [`nodejs/wasm-builder`]: https://github.com/nodejs/wasm-builder | ||||||
| [`nodejs/doc-kit`]: https://github.com/nodejs/doc-kit | ||||||
| [`nodejs/admin`][]: https://github.com/nodejs/admin | ||||||
|
||||||
| [`nodejs/admin`][]: https://github.com/nodejs/admin | |
| [`nodejs/admin`]: https://github.com/nodejs/admin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Workflow name is set to "Linters", which duplicates the existing linters workflow name and makes scheduled runs hard to distinguish in the Actions UI. Rename this workflow to something specific to its purpose (e.g., inactive member report).