name: Reload Act Runner Stack to clear cache for workflows on: push: branches: [main] jobs: diff: uses: martin/chromart-gitea-actions/.gitea/workflows/diff-output.yaml@main with: files: .gitea/** reload-primary: needs: diff if: ${{ needs.diff.outputs.is_changed == 'true' }} uses: martin/chromart-gitea-actions/.gitea/workflows/gitainer-deploy.yaml@main with: stack_name: gitea_act_runner # the secondary runner executes the primary restart webhook runs_on_label: runner-secondary reload-secondary: needs: [diff, reload-primary] if: ${{ needs.diff.outputs.is_changed == 'true' }} # ensuring the primary actually survived and restarted successfully uses: martin/chromart-gitea-actions/.gitea/workflows/gitainer-deploy.yaml@main with: stack_name: gitea_act_runner_secondary # the primary runner executes the secondary restart webhook runs_on_label: runner-primary pull-cache-secondary: needs: [diff, reload-secondary] if: ${{ needs.diff.outputs.is_changed == 'true' }} # Use the secondary runner (which is now done restarting) to prove it's alive and pull cache uses: martin/chromart-gitea-actions/.gitea/workflows/pull-cache.yaml@main with: runs_on_label: runner-secondary