Update redirects.js for Bot Detection #570
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-latest | |
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 |