From f123507de6def0bf4870e4b0628c17c073316c28 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Thu, 31 Jul 2025 16:39:43 -0500 Subject: [PATCH] remove workflow --- .gitea/workflows/process-repository.yaml | 40 ------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .gitea/workflows/process-repository.yaml diff --git a/.gitea/workflows/process-repository.yaml b/.gitea/workflows/process-repository.yaml deleted file mode 100644 index 54c384d50..000000000 --- a/.gitea/workflows/process-repository.yaml +++ /dev/null @@ -1,40 +0,0 @@ -name: process-repository - -on: - schedule: - - cron: "@daily" - -jobs: - process-repository: - 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: workflow-scripts - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: "3.13" - - - name: Install dependencies - run: pip install requests immutabledict - - - name: Run Script - env: - INSTANCE_URL: ${{ vars.INSTANCE_URL }} - OWNER: ${{ gitea.owner }} - REPOSITORY: ${{ gitea.repository }} - TOKEN: ${{ secrets.BOT_TOKEN }} - LOG_LEVEL: DEBUG - ISSUE_STALE_DAYS: 3 - ISSUE_STALE_TAG: 16 - ISSUE_EXCLUDE_TAG: 20 - PULL_REQUEST_STALE_DAYS: 3 - PULL_REQUEST_STALE_TAG: 16 - PULL_REQUEST_REQUIRED_TAG: 15 - run: python ./workflow-scripts/process-repository.py