diff --git a/.gitea/workflows/close-inactive.yml b/.gitea/workflows/close-inactive.yml new file mode 100644 index 0000000..9395329 --- /dev/null +++ b/.gitea/workflows/close-inactive.yml @@ -0,0 +1,16 @@ +name: Close Inactive PRs + +on: + schedule: + - cron: '0 0 * * *' + +jobs: + close-inactive: + runs-on: ubuntu-latest + steps: + - name: Close Inactive PRs + uses: actions/close-inactive-prs@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-close: 14 + days-before-inactive: 60