diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index b220ee8..0000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,41 +0,0 @@ -# name: Close stale issues -# -# on: -# schedule: -# - cron: "30 12 * * *" -# -# jobs: -# stale: -# permissions: -# issues: write -# pull-requests: write -# -# uses: hetznercloud/.github/.github/workflows/stale.yml@main - -name: Close stale issues - -on: - workflow_call: - -permissions: - issues: write - pull-requests: write - -jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v10 - with: - stale-issue-message: >- - This issue has been marked as stale because it has not had recent activity. - The bot will close the issue if no further action occurs. - stale-pr-message: >- - This PR has been marked as stale because it has not had recent activity. - The bot will close the PR if no further action occurs. - exempt-issue-labels: pinned - exempt-pr-labels: pinned - stale-issue-label: stale - stale-pr-label: stale - days-before-close: 30 - days-before-stale: 90