mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-08-04 00:00:08 +08:00
checkout v4.3.1 -> v7.0.1, setup-node v4.4.0 -> v7.0.0, stale v9.1.0 -> v10.4.0. The breaking changes across those majors do not apply here: - checkout v5/v6 harden `pull_request_target` checkouts; no workflow uses it - setup-node v5 auto-caches when package.json has a `packageManager` field; it has none, and `cache: npm` is set explicitly anyway - setup-node v7 drops the dummy NODE_AUTH_TOKEN export; the publish job sets NODE_AUTH_TOKEN itself - stale v10 only moves the runtime to node 24 All of them also raise the runtime to node 24, which clears the deprecation warnings on recent runs.
31 lines
891 B
YAML
31 lines
891 B
YAML
name: Stale issues and PRs
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 6 * * 1"
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v10.4.0
|
|
with:
|
|
stale-issue-message: >
|
|
This issue has been automatically marked as inactive due to lack of
|
|
recent activity. It will be closed in 14 days if no further activity
|
|
occurs.
|
|
stale-pr-message: >
|
|
This PR has been automatically marked as inactive due to lack of
|
|
recent activity. It will be closed in 14 days if no further activity
|
|
occurs.
|
|
stale-issue-label: "status: inactive"
|
|
stale-pr-label: "status: inactive"
|
|
days-before-stale: 60
|
|
days-before-close: 14
|
|
exempt-issue-labels: "pinned,keep"
|
|
exempt-pr-labels: "pinned,keep"
|