diff --git a/.github/workflows/acceptance-stage.yml b/.github/workflows/acceptance-stage.yml new file mode 100644 index 0000000..f968b4b --- /dev/null +++ b/.github/workflows/acceptance-stage.yml @@ -0,0 +1,27 @@ +name: Acceptance Stage +on: + workflow_run: + workflows: ['Commit Stage'] + types: [completed] + branches: main +concurrency: acceptance + +jobs: + functional: + name: Functional Acceptance Tests + if: ${{ github.event.workflow_run.conclusion == 'success' }} + runs-on: ubuntu-22.04 + steps: + - run: echo "Running functional acceptance tests" + performance: + name: Performance Tests + if: ${{ github.event.workflow_run.conclusion == 'success' }} + runs-on: ubuntu-22.04 + steps: + - run: echo "Running performance tests" + security: + name: Security Tests + if: ${{ github.event.workflow_run.conclusion == 'success' }} + runs-on: ubuntu-22.04 + steps: + - run: echo "Running security tests"