Files
helm-charts/.gitea/workflows/process-repository.yaml
Alex Lebens c7871ee4b6
All checks were successful
renovate / renovate (push) Successful in 1m8s
change env
2025-07-15 23:01:36 -05:00

42 lines
1.0 KiB
YAML

name: process-repository
on:
schedule:
- cron: '@daily'
workflow_dispatch:
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 }}
REPOSITORY: ${{ gitea.repository }}
TOKEN: ${{ secrets.BOT_TOKEN }}
LOG_LEVEL: DEBUG
ISSUE_STALE_DAYS: 3
ISSUE_STALE_TAG: stale
ISSUE_EXCLUDE_TAG: renovate
PULL_REQUEST_STALE_DAYS: 3
PULL_REQUEST_STALE_TAG: stale
PULL_REQUEST_REQUIRED_TAG: automerge
run: python ./workflow-scripts/process-repository.py