mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-04-13 00:00:10 +08:00
01f6257ebf
Update CI workflow: restrict triggers to master+PRs, add concurrency groups and npm cache. Update release-please and stale workflows to latest action versions. Replace single ISSUE_TEMPLATE.md with YAML- based templates (bug report, feature request, config). Rewrite CONTRIBUTING.md for awesome-cordova-plugins.
31 lines
890 B
YAML
31 lines
890 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@v9.1.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"
|