Feature request: Disable Github job status in PR when enable update_pull_request_status
#144
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
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
container-tests: | |
runs-on: ubuntu-22.04 | |
name: "Smoke test for testing farm as a github action" | |
if: | | |
github.event.issue.pull_request | |
&& contains(github.event.comment.body, '[test]') | |
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association) | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
ref: "refs/pull/${{ github.event.issue.number }}/head" | |
- name: Run the tests | |
uses: ./ | |
with: | |
api_key: ${{ secrets.TF_PUBLIC_API_KEY }} | |
git_url: "https://github.com/sclorg/testing-farm-as-github-action" | |
git_ref: "main" | |
tmt_plan_regex: "smoke_plan" | |
pull_request_status_name: "Smoke test" | |
update_pull_request_status: "true" |