26 lines
1.1 KiB
YAML
26 lines
1.1 KiB
YAML
name: Stale issue action
|
|
on:
|
|
schedule:
|
|
- cron: "* 8 * * *"
|
|
|
|
jobs:
|
|
close-issues:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@v5
|
|
with:
|
|
any-of-labels: "frozen"
|
|
days-before-issue-stale: 365
|
|
days-before-issue-close: 20
|
|
stale-issue-label: "stale"
|
|
stale-issue-message: >
|
|
At Airbyte, we seek to be clear about the project priorities and roadmap.
|
|
This issue has not had any activity for 365 days, suggesting that it's not as critical as others.
|
|
It's possible it has already been fixed. It is being marked as stale and will be closed in 20 days if there is no activity.
|
|
To keep it open, please comment to let us know why it is important to you and if it is still reproducible on recent versions of Airbyte.
|
|
close-issue-message: "This issue was closed because it has been inactive for 20 days since being marked as stale."
|
|
repo-token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }}
|