From 749a6d9ee813af86e373f6ff04a83a9f9d250b2f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:42 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/close-inactive.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/close-inactive.yml 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