@@ -2,7 +2,7 @@ name: Run tests on Testing Farm
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [ master, container-tests ]
66 pull_request_target :
77 types : [opened, synchronize, reopened]
88
2222 ref : " refs/pull/${{ github.event.issue.number }}/head"
2323
2424 - name : Test init on Fedora VM
25- uses : sclorg/testing-farm-as-github-action@v4
25+ uses : sclorg/testing-farm-as-github-action@main
2626 with :
2727 api_key : ${{ secrets.TESTING_FARM_API_TOKEN }}
2828 compose : Fedora-Rawhide
4646 ref : " refs/pull/${{ github.event.issue.number }}/head"
4747
4848 - name : Test upgrade on Fedora VM
49- uses : sclorg/testing-farm-as-github-action@v4
49+ uses : sclorg/testing-farm-as-github-action@main
5050 with :
5151 api_key : ${{ secrets.TESTING_FARM_API_TOKEN }}
5252 compose : Fedora-Rawhide
5555 pull_request_status_name : " Fedora upgrade test"
5656 update_pull_request_status : " true"
5757 create_github_summary : " true"
58+ container-test-init :
59+ runs-on : ubuntu-latest
60+
61+ permissions :
62+ contents : read
63+ pull-requests : write
64+ statuses : write
65+
66+ steps :
67+ - name : Checkout repository
68+ uses : actions/checkout@v4
69+
70+ - name : Test init on Fedora container
71+ uses : sclorg/testing-farm-as-github-action@main
72+ with :
73+ api_key : ${{ secrets.TESTING_FARM_API_TOKEN }}
74+ compose : null
75+ tmt_path : " tmt"
76+ tmt_plan_regex : " container-fedora-init"
77+ pull_request_status_name : " Fedora container init test"
78+ update_pull_request_status : " true"
79+ create_github_summary : " true"
80+ container-test-upgrade :
81+ runs-on : ubuntu-latest
82+
83+ permissions :
84+ contents : read
85+ pull-requests : write
86+ statuses : write
87+
88+ steps :
89+ - name : Checkout repository
90+ uses : actions/checkout@v4
91+
92+ - name : Test upgrade on Fedora container
93+ uses : sclorg/testing-farm-as-github-action@main
94+ with :
95+ api_key : ${{ secrets.TESTING_FARM_API_TOKEN }}
96+ compose : null
97+ tmt_path : " tmt"
98+ tmt_plan_regex : " container-fedora-upgrade"
99+ pull_request_status_name : " Fedora container upgrade test"
100+ update_pull_request_status : " true"
101+ create_github_summary : " true"
102+
103+
0 commit comments