| |
| |
| |
| |
| |
| |
| --- |
| name: 'Stale Issues' |
| on: |
| schedule: |
| - cron: '0 0 * * *' |
| workflow_dispatch: |
|
|
| permissions: |
| contents: read |
| issues: write |
| pull-requests: write |
|
|
| jobs: |
| stale: |
| runs-on: ubuntu-latest |
| steps: |
| - name: Harden the runner (Audit all outbound calls) |
| uses: step-security/harden-runner@df199fb7be9f65074067a9eb93f12bb4c5547cf2 |
| with: |
| egress-policy: audit |
|
|
| - name: '🧹 Tag & close stale unconfirmed bugs' |
| id: stale_issues |
| uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 |
| with: |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |
| days-before-issue-stale: 90 |
| days-before-issue-close: 14 |
| days-before-pr-stale: -1 |
| days-before-pr-close: -1 |
| operations-per-run: 200 |
| stale-issue-label: 'Status: Stale' |
| close-issue-label: 'Status: Auto-closing' |
| exempt-issue-labels: 'Status: Confirmed,Priority: High,Priority: Critical,Blocker,Type: Feature,no-auto-close,3rd party: OCC' |
| remove-stale-when-updated: true |
| ascending: true |
| stale-issue-message: | |
| Hi! This issue hasn’t seen activity in a while. If it’s still relevant, please update to the latest FreeCAD weekly build [download here](https://github.com/FreeCAD/FreeCAD/releases/) to see if the problem is resolved. |
| |
| If the issue persists, let us know by adding a comment with any updates or details. Otherwise, we’ll close this issue automatically in 14 days to keep our backlog tidy. Feel free to comment anytime to keep it open. Closed issues can always be reopened. |
| Thanks for helping improve FreeCAD! |
|
|
| Access additional [FreeCAD](https://freecad.org) resources: |
| - **Forum**: https://forum.freecad.org |
| - **Blog**: https://blog.freecad.org |
| - **Wiki**: https://wiki.freecad.org |
|
|
| - name: '🧹 Close stale requested feedback issues' |
| id: awaiting_issues |
| uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 |
| with: |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |
| days-before-issue-stale: 20 |
| days-before-issue-close: 14 |
| days-before-pr-stale: -1 |
| days-before-pr-close: -1 |
| operations-per-run: 100 |
| stale-issue-label: 'Status: Stale' |
| close-issue-label: 'Status: Auto-closing' |
| only-labels: 'Status: Needs feedback,Status: Needs test on dev version,Status: Needs steps to reproduce' |
| remove-stale-when-updated: true |
| ascending: true |
| stale-issue-message: | |
| Hi! This issue hasn’t seen activity in a while despite the need for further feedback. |
| If it’s still relevant, please update to the latest FreeCAD weekly build [download here](https://github.com/FreeCAD/FreeCAD/releases/) to see if the problem is resolved. |
| |
| If the issue persists, let us know by adding a comment with any updates or details. Otherwise, we’ll close this issue automatically in 14 days to keep our backlog tidy. Feel free to comment anytime to keep it open. Closed issues can always be reopened. |
| Thanks for helping improve FreeCAD! |
|
|
| Access additional [FreeCAD](https://freecad.org) resources: |
| - **Forum**: https://forum.freecad.org |
| - **Blog**: https://blog.freecad.org |
| - **Wiki**: https://wiki.freecad.org |
|
|
| - name: '🧹 Tag & close inactive issues' |
| id: inactive_issues |
| uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 |
| with: |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |
| days-before-issue-stale: 190 |
| days-before-issue-close: 60 |
| days-before-pr-stale: -1 |
| days-before-pr-close: -1 |
| operations-per-run: 100 |
| stale-issue-label: 'Status: Stale' |
| close-issue-label: 'Status: Auto-closing' |
| exempt-issue-labels: 'Priority: High,Priority: Critical,Blocker,Type: Feature,no-auto-close,3rd party: OCC' |
| remove-stale-when-updated: true |
| ascending: true |
| stale-issue-message: | |
| Hi! This issue hasn’t seen activity in a while. We automatically check each issue after 190 days without activity to keep the backlog tidy. |
| If it’s still relevant, please update to the latest FreeCAD weekly build [download here](https://github.com/FreeCAD/FreeCAD/releases/) to see if the issue is already resolved. |
| |
| If the issue is still relevant, let us know by adding a comment. |
| Otherwise, we’ll close this issue automatically in 60 days. |
|
|
| Feel free to comment anytime to keep it open. Closed issues can always be reopened. |
| Thanks for helping improve FreeCAD! |
|
|
| Access additional [FreeCAD](https://freecad.org) resources: |
| - **Forum**: https://forum.freecad.org |
| - **Blog**: https://blog.freecad.org |
| - **Wiki**: https://wiki.freecad.org |
|
|
| - name: '🧹 Tag & close inactive PRs' |
| id: inactive_pr |
| uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 |
| with: |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |
| days-before-issue-stale: -1 |
| days-before-issue-close: -1 |
| days-before-pr-stale: 120 |
| days-before-pr-close: 60 |
| operations-per-run: 30 |
| stale-pr-label: 'Status: Stale' |
| close-pr-label: 'Status: Auto-closing' |
| exempt-pr-labels: 'Needs backport,Priority: High,Priority: Critical,no-auto-close' |
| remove-stale-when-updated: true |
| ascending: true |
| stale-pr-message: | |
| Thanks for helping improve FreeCAD! |
| This pull request hasn’t seen activity in a while. We automatically check each PR after 120 days without activity to keep the repository tidy. |
| |
| If the PR is still relevant, let us know by adding a comment. |
| Otherwise, we’ll close this PR automatically in 60 days. |
|
|
| If you would like to keep working on this pull request, we advice to rebase it on current main branch, ask feedback from users or maintainers and engage with the community to get it forward. |
|
|