Skip to content

updating to fix the pipeline #890

updating to fix the pipeline

updating to fix the pipeline #890

name: Integration Tests
on:
pull_request:
branches: master
concurrency:
group: pr-integration-tests-${{ github.event.pull_request.id }}
cancel-in-progress: true
jobs:
tests:
name: Trigger Tests
runs-on: ubuntu-22.04-2cpu-8ram-75ssd
steps:
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get branch name
id: branch-name
uses: tj-actions/[email protected]
- name: Wait for Tests Results
uses: convictional/[email protected]
with:
owner: ${{ secrets.NOTIFY_ORG }}
repo: ${{ secrets.NOTIFY_REPO }}
github_token: ${{ secrets.NOTIFY_PAT_TOKEN }}
workflow_file_name: integration-tests.yml
ref: master
wait_interval: 90
client_payload: '{ "docsBranch": "${{ steps.branch-name.outputs.current_branch }}", "pullRequest": "${{ github.event.pull_request.number }}", "postStatus": "true" }'
propagate_failure: true
trigger_workflow: true
wait_workflow: true