Skip to content

Commit

Permalink
Use regex for tmt plan names
Browse files Browse the repository at this point in the history
Otherwise it seems that all plans including the given string are scheduled.
  • Loading branch information
jan-kolarik authored and m-blaha committed Feb 9, 2024
1 parent d9dc8ad commit 6f2db66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .packit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ jobs:
- fedora-all
fmf_url: https://github.com/rpm-software-management/ci-dnf-stack.git
fmf_ref: main
tmt_plan: /plans/integration/behave-dnf5
tmt_plan: "^/plans/integration/behave-dnf5$"
- job: tests
trigger: pull_request
identifier: "createrepo_c-tests"
targets:
- fedora-all
fmf_url: https://github.com/rpm-software-management/ci-dnf-stack.git
fmf_ref: main
tmt_plan: /plans/integration/behave-createrepo_c
tmt_plan: "^/plans/integration/behave-createrepo_c$"
- job: tests
trigger: pull_request
identifier: "dnf-tests"
Expand All @@ -60,7 +60,7 @@ jobs:
- fedora-all
fmf_url: https://github.com/rpm-software-management/ci-dnf-stack.git
fmf_ref: main
tmt_plan: /plans/integration/behave-dnf
tmt_plan: "^/plans/integration/behave-dnf$"
- job: tests
trigger: pull_request
identifier: "dnf5daemon-tests"
Expand All @@ -69,4 +69,4 @@ jobs:
- fedora-all
fmf_url: https://github.com/rpm-software-management/ci-dnf-stack.git
fmf_ref: main
tmt_plan: /plans/integration/behave-dnf5daemon
tmt_plan: "^/plans/integration/behave-dnf5daemon$"

0 comments on commit 6f2db66

Please sign in to comment.