mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2024-12-27 06:25:47 +08:00
c165525fc7
Bumps [bahmutov/npm-install](https://github.com/bahmutov/npm-install) from 1.8.32 to 1.8.33.
- [Release notes](https://github.com/bahmutov/npm-install/releases)
- [Commits](c5482d70ec...fe55be81ab
)
---
updated-dependencies:
- dependency-name: bahmutov/npm-install
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alexandr <qwerty541zxc@gmail.com>
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
name: Close stale theme pull requests that have the 'invalid' label.
|
|
on:
|
|
schedule:
|
|
# ┌───────────── minute (0 - 59)
|
|
# │ ┌───────────── hour (0 - 23)
|
|
# │ │ ┌───────────── day of the month (1 - 31)
|
|
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
|
|
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
|
|
# │ │ │ │ │
|
|
# │ │ │ │ │
|
|
# │ │ │ │ │
|
|
# * * * * *
|
|
- cron: "0 0 */7 * *"
|
|
|
|
permissions:
|
|
actions: read
|
|
checks: read
|
|
contents: read
|
|
deployments: read
|
|
issues: read
|
|
discussions: read
|
|
packages: read
|
|
pages: read
|
|
pull-requests: write
|
|
repository-projects: read
|
|
security-events: read
|
|
statuses: read
|
|
|
|
jobs:
|
|
closeOldThemePrs:
|
|
if: github.repository == 'anuraghazra/github-readme-stats'
|
|
name: Close stale 'invalid' theme PRs
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: npm
|
|
|
|
- uses: bahmutov/npm-install@fe55be81abde2193c4843a2129b4aec3bb21cc8f # v1.8.33
|
|
with:
|
|
useLockFile: false
|
|
|
|
- run: npm run close-stale-theme-prs
|
|
env:
|
|
STALE_DAYS: 20
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|