diff --git a/.gitea/workflows/continuous_integration.yaml b/.gitea/workflows/continuous_integration.yaml index 24637b6..972155c 100644 --- a/.gitea/workflows/continuous_integration.yaml +++ b/.gitea/workflows/continuous_integration.yaml @@ -232,7 +232,11 @@ jobs: deploy-test: 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 secrets: inherit # Deze waarden komen uit het `env:`-blok bovenaan dit bestand, via de