mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2024-12-15 06:04:17 +08:00
dcc4ccd18c
This commits increases the theme invalid close time to 20 days.
31 lines
674 B
YAML
31 lines
674 B
YAML
name: Close stale theme pull requests that have the 'invalid' label.
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 */7 * *"
|
|
|
|
jobs:
|
|
closeOldThemePrs:
|
|
name: Close stale 'invalid' theme PRs
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [16.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: npm
|
|
|
|
- uses: bahmutov/npm-install@v1
|
|
with:
|
|
useLockFile: false
|
|
|
|
- run: npm run close-stale-theme-prs
|
|
env:
|
|
STALE_DAYS: 20
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|