More select or deselect of beta client tools #9159
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: Acceptance Tests | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
# pull_request_target: | |
# types: | |
# - labeled # Trigger when a label is added | |
schedule: | |
- cron: '0 */12 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
acceptance-tests: | |
name: "0" | |
# Skip running scheduled jobs on forks | |
if: (github.repository == 'uyuni-project/uyuni' || github.event_name != 'schedule') | |
# Skip running scheduled jobs on forks and only run if "run-full-testsuite" label is present | |
# if: >- | |
# (github.ref == 'refs/heads/master') || | |
# ((github.repository == 'uyuni-project/uyuni' || github.event_name != 'schedule') && | |
# contains(github.event.pull_request.labels.*.name, 'run-full-testsuite')) | |
uses: ./.github/workflows/acceptance_tests_common.yml | |
with: | |
secondary_tests: "18_run_secondary_tests.sh" | |
server_id: "secondary" | |