From d37c77f244c7c13da5b6c8ffd205af5e51f3ee54 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 14 Jul 2025 22:31:34 -0500 Subject: [PATCH] change paths --- .gitea/workflows/process-pull-requests.yaml | 35 ------------------- ...ss-issues.yaml => process-repository.yaml} | 2 +- 2 files changed, 1 insertion(+), 36 deletions(-) delete mode 100644 .gitea/workflows/process-pull-requests.yaml rename .gitea/workflows/{process-issues.yaml => process-repository.yaml} (93%) diff --git a/.gitea/workflows/process-pull-requests.yaml b/.gitea/workflows/process-pull-requests.yaml deleted file mode 100644 index 6785994..0000000 --- a/.gitea/workflows/process-pull-requests.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: process-pull-requests - -on: - schedule: - - cron: '@daily' - -jobs: - process-pull-requests: - runs-on: ubuntu-latest - steps: - - name: Checkout Python Script - uses: actions/checkout@v4 - with: - repository: alexlebens/workflow-scripts - ref: main - token: ${{ secrets.BOT_TOKEN }} - path: scripts - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.13' - - - name: Install dependencies - run: pip install requests - - - name: Run Script - env: - INSTANCE_URL: ${{ vars.INSTANCE_URL }} - REPOSITORY: ${{ gitea.repository }} - TOKEN: ${{ secrets.BOT_TOKEN }} - STALE_DAYS: 3 - STALE_TAG: 21 - REQUIRED_TAG: 19 - run: python ./scripts/scripts/process-pull-requests.py diff --git a/.gitea/workflows/process-issues.yaml b/.gitea/workflows/process-repository.yaml similarity index 93% rename from .gitea/workflows/process-issues.yaml rename to .gitea/workflows/process-repository.yaml index d2b3054..d2eaaf9 100644 --- a/.gitea/workflows/process-issues.yaml +++ b/.gitea/workflows/process-repository.yaml @@ -37,4 +37,4 @@ jobs: PULL_REQUEST_STALE_DAYS: 3 PULL_REQUEST_STALE_TAG: 21 PULL_REQUEST_REQUIRED_TAG: 19 - run: python ./workflow-scripts/scripts/process-repository.py + run: python ./workflow-scripts/process-repository.py