Deploy testomgeving tijdelijk ook bij elke PR (vereenvoudigt testen)
Continuous Integration / config (pull_request) Successful in 9s
Continuous Integration / prepare (pull_request) Successful in 1m31s
Continuous Integration / build-production (pull_request) Skipped
Continuous Integration / build (pull_request) Successful in 2m7s
Continuous Integration / test (pull_request) Successful in 2m0s
Continuous Integration / deploy-production (pull_request) Skipped
Deploy / deploy (pull_request) Failing after 37s
Continuous Integration / deploy-test (pull_request) Failing after 38s

This commit is contained in:
2026-07-30 13:37:49 +02:00
parent 6c08d0a842
commit 5ded994626
+5 -1
View File
@@ -232,7 +232,11 @@ jobs:
deploy-test: deploy-test:
needs: [build, test, config] needs: [build, test, config]
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/master') # TIJDELIJK: 'pull_request' is toegevoegd zodat elke PR ook automatisch
# naar de testomgeving deployed, om testen tijdens deze werkbranch te
# vereenvoudigen. Verwijder de 'pull_request'-conditie hieronder weer
# zodra dat niet meer nodig is.
if: github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref == 'refs/heads/master')
uses: ./.gitea/workflows/deploy.yaml uses: ./.gitea/workflows/deploy.yaml
secrets: inherit secrets: inherit
# Deze waarden komen uit het `env:`-blok bovenaan dit bestand, via de # Deze waarden komen uit het `env:`-blok bovenaan dit bestand, via de