Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/check-outdated-projects.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Check Outdated Projects

on:
schedule:
- cron: '0 9 * * 1'
workflow_dispatch:
pull_request:
paths:
- 'README.md'
- 'scripts/check-outdated-projects.mjs'
- '.github/workflows/check-outdated-projects.yml'
- 'package.json'

jobs:
check-outdated-projects:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Check outdated community projects
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MAX_AGE_MONTHS: '13'
FAIL_ON_FINDINGS: 'true'
run: npm run check:outdated-projects
Loading
Loading