Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/pnp-processor-deploy-autopilot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ on:
type: string
required: false
default: 'v'
trigger-synthetic-monitoring-tests:
description: 'If true runs synthetic monitoring tests'
type: boolean
required: false
default: true
jobs:
deploy:
if: github.ref == 'refs/heads/master'
Expand Down Expand Up @@ -86,6 +91,16 @@ jobs:
image: eu.gcr.io/extenda/${{ secrets.GCR_image_name }}:${{ steps.semver.outputs.release-version }}
update-dns: always

- name: Trigger synthetic monitoring tests
if: ${{ inputs.trigger-synthetic-monitoring-tests == true }}
run: |
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $GITHUB_TOKEN" \
'https://api.github.com/repos/extenda/enterprise-pnp-common/dispatches' \
-d '{"event_type":"run_synthetic_monitoring_tests"}'

- name: Dora Component
if: ${{ inputs.release-version == true && inputs.dora-component != ''}}
uses: extenda/actions/dora-metrics@v0
Expand Down