mirror of
https://github.com/outbackdingo/pangolin.git
synced 2026-01-27 10:20:03 +00:00
- Pin actions/checkout to SHA for v5.0.0 - Pin docker/setup-qemu-action to SHA for v3.6.0 - Pin docker/setup-buildx-action to SHA for v3.11.1 - Pin docker/login-action to SHA for v3.6.0 - Pin actions/setup-go to SHA for v6.0.0 - Pin actions/upload-artifact to SHA for v4.6.2 - Pin actions/setup-node to SHA for v6.0.0 - Pin actions/stale to SHA for v10.1.0
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
name: Mark and Close Stale Issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
workflow_dispatch: # Allow manual trigger
|
|
|
|
permissions:
|
|
contents: write # only for delete-branch option
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
|
|
with:
|
|
days-before-stale: 14
|
|
days-before-close: 14
|
|
stale-issue-message: 'This issue has been automatically marked as stale due to 14 days of inactivity. It will be closed in 14 days if no further activity occurs.'
|
|
close-issue-message: 'This issue has been automatically closed due to inactivity. If you believe this is still relevant, please open a new issue with up-to-date information.'
|
|
stale-issue-label: 'stale'
|
|
|
|
exempt-issue-labels: 'needs investigating, networking, new feature, reverse proxy, bug, api, authentication, documentation, enhancement, help wanted, good first issue, question'
|
|
|
|
exempt-all-issue-assignees: true
|
|
|
|
only-labels: ''
|
|
exempt-pr-labels: ''
|
|
days-before-pr-stale: -1
|
|
days-before-pr-close: -1
|
|
|
|
operations-per-run: 100
|
|
remove-stale-when-updated: true
|
|
delete-branch: false
|
|
enable-statistics: true
|