Files
grm/.gitea/workflows/auto-merge.yml
T
emil 0fadb7c504
Post-merge Vikunja update / vikunja (push) Failing after 5s
CI / quality (push) Successful in 1m3s
CI / molecule-tests (0) (push) Failing after 3m35s
CI / molecule-tests (1) (push) Failing after 5m53s
CI / molecule-tests (2) (push) Failing after 5m59s
GRM-27: fix: CI workflows for rootless runner compatibility
2026-06-20 17:01:55 +00:00

25 lines
671 B
YAML

name: Auto-merge
on:
pull_request:
types: [labeled]
jobs:
merge:
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: python3 -m pip install --break-system-packages requests python-dotenv click
- name: Squash merge with task ID
env:
REPO_TOKEN: ${{ secrets.REPO_TOKEN }}
PYTHONPATH: src
run: |
python3 scripts/auto_merge.py \
"${{ github.head_ref }}" \
"${{ github.event.pull_request.title }}" \
"${{ github.repository }}" \
"${{ github.event.number }}" \
"${{ github.event.label.name }}"