@@ -2,7 +2,7 @@ name: Run tests on Testing Farm
22
33on :
44 push :
5- branches : [ master, container-tests ]
5+ branches : [ master ]
66 pull_request_target :
77 types : [opened, synchronize, reopened]
88
5757 update_pull_request_status : " true"
5858 create_github_summary : " true"
5959 variables : " REPO_URL=${{ github.server_url }}/${{ github.repository }};PR_HEAD=${{ github.event.pull_request.head.sha }};"
60- container-test-init :
61- runs-on : ubuntu-latest
62-
63- permissions :
64- contents : read
65- pull-requests : write
66- statuses : write
67-
68- steps :
69- - name : Checkout repository
70- uses : actions/checkout@v4
71- with :
72- ref : ${{ github.event.pull_request.head.sha }}
73-
74- - name : Test init on Fedora container
75- uses : sclorg/testing-farm-as-github-action@main
76- with :
77- api_key : ${{ secrets.TESTING_FARM_API_TOKEN }}
78- compose : null
79- tmt_path : " tmt"
80- tmt_plan_regex : " container-fedora-init"
81- pull_request_status_name : " Fedora container init test"
82- update_pull_request_status : " true"
83- create_github_summary : " true"
84- variables : " REPO_URL=${{ github.server_url }}/${{ github.repository }};PR_HEAD=${{ github.event.pull_request.head.sha }};"
85-
86- container-test-upgrade :
87- runs-on : ubuntu-latest
88-
89- permissions :
90- contents : read
91- pull-requests : write
92- statuses : write
93-
94- steps :
95- - name : Checkout repository
96- uses : actions/checkout@v4
97- with :
98- ref : ${{ github.event.pull_request.head.sha }}
99-
100- - name : Test upgrade on Fedora container
101- uses : sclorg/testing-farm-as-github-action@main
102- with :
103- api_key : ${{ secrets.TESTING_FARM_API_TOKEN }}
104- compose : null
105- tmt_path : " tmt"
106- tmt_plan_regex : " container-fedora-upgrade"
107- pull_request_status_name : " Fedora container upgrade test"
108- update_pull_request_status : " true"
109- create_github_summary : " true"
110- variables : " REPO_URL=${{ github.server_url }}/${{ github.repository }};PR_HEAD=${{ github.event.pull_request.head.sha }};"
111-
112-
0 commit comments