Added GitHub action to fake PR tests #1
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
# This GitHub action reports a fake test success in order to allow a PR to be added to the merge queue without executing | |
# tests first. This action is triggered when the button "Merge when ready" is clicked for a PR. | |
# See https://app.gitbook.com/o/HBtg1gLTy0nw4NaX0MaV/s/bfdwYZ4RTsNHasAMVAKe/ | |
name: PR tests | |
on: | |
pull_request: | |
types: [auto_merge_enabled] | |
jobs: | |
skip: | |
name: Report fake success for PR tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: LouisBrunner/[email protected] | |
with: | |
# The name below needs to match the name of the real test job on TeamCity | |
name: Run PR tests (Plugins) (Plugins) | |
conclusion: success | |
token: ${{ secrets.GITHUB_TOKEN }} |