- Implements Apache APISIX packaging for Cloudron platform. - Includes Dockerfile, CloudronManifest.json, and start.sh. - Configured to use Cloudron's etcd addon. 🤖 Generated with Gemini CLI Co-Authored-By: Gemini <noreply@google.com>
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
name: Check Issues
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 10 * * *'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
prune_stale:
|
|
permissions:
|
|
issues: write # for actions/stale to close stale issues
|
|
name: Prune Unresponded
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- name: Prune Stale
|
|
uses: actions/stale@v8
|
|
with:
|
|
days-before-issue-stale: 60
|
|
days-before-issue-close: 3
|
|
stale-issue-message: >
|
|
Due to lack of the reporter's response this issue has been labeled with "no response".
|
|
It will be close in 3 days if no further activity occurs. If this issue is still
|
|
relevant, please simply write any comment. Even if closed, you can still revive the
|
|
issue at any time or discuss it on the dev@apisix.apache.org list.
|
|
Thank you for your contributions.
|
|
close-issue-message: >
|
|
This issue has been closed due to lack of activity. If you think that
|
|
is incorrect, or the issue requires additional review, you can revive the issue at
|
|
any time.
|
|
# Issues with these labels will never be considered stale.
|
|
only-labels: 'wait for update'
|
|
stale-issue-label: 'no response'
|
|
exempt-issue-labels: "don't close"
|
|
ascending: true
|