Add test gate to deploy workflow #19
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Severity: Low
The deploy workflow (
.gitea/workflows/deploy.yml) isworkflow_dispatchonly and does not depend on the test/lint workflows. Someone can manually deploy a broken build.Add
needs: [test, lint]or at minimum a check that CI passed on the commit being deployed.