Files
shared-actions/examples/microservizio/maintenance.yml
T
LucaZanni e5df154060 🔧 chore(ci): aggiorna uses: verso gitea.com per accesso pubblico
- Sostituito path interno pzeta_touch/shared-actions con URL assoluto gitea.com
- Risolve errore autenticazione del runner su repo shared-actions privato
- Il runner clona da gitea.com/Punga78/shared-actions senza credenziali
2026-03-26 06:55:57 +01:00

23 lines
673 B
YAML

# Copia in: .gitea/workflows/maintenance.yml
# Combina branch-cleanup (PR merge) e dependency-check (settimanale)
name: Maintenance
on:
pull_request:
types: [closed]
schedule:
- cron: '0 8 * * 1'
workflow_dispatch:
jobs:
branch-cleanup:
if: gitea.event_name == 'pull_request' && gitea.event.pull_request.merged == true
uses: https://gitea.com/Punga78/shared-actions/.gitea/workflows/branch-cleanup.yml@main
secrets: inherit
dependency-check:
if: gitea.event_name == 'schedule' || gitea.event_name == 'workflow_dispatch'
uses: https://gitea.com/Punga78/shared-actions/.gitea/workflows/dependency-check.yml@main
secrets: inherit