mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-05 04:24:05 +08:00
28 lines
642 B
Plaintext
28 lines
642 B
Plaintext
---
|
|
- when: {message_type: KojiBuildPackageCompleted}
|
|
do:
|
|
- {tasks: [rpmlint, rpmgrill, python-versions]}
|
|
|
|
- when:
|
|
message_type: KojiBuildPackageCompleted
|
|
name:
|
|
$nin: [{{ trigger_abicheck_blacklist | join(',') }}]
|
|
do:
|
|
- {tasks: [abicheck]}
|
|
|
|
- when:
|
|
message_type: KojiTagChanged
|
|
tag: {$regex: '/^f[0-9]{2}-updates(-testing)?-pending$$/'}
|
|
do:
|
|
- {tasks: [rpmdeplint]}
|
|
|
|
- when: {message_type: DistGitCommit, namespace: modules}
|
|
do:
|
|
- {tasks: [check_modulemd]}
|
|
|
|
- when:
|
|
message_type: GitHubPullRequestOpened
|
|
repo_name: {$regex: '/^container-images\/.+/'}
|
|
do:
|
|
- {tasks: [mtf-containers]}
|