This repository was archived by the owner on Sep 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +36
-7
lines changed Expand file tree Collapse file tree 3 files changed +36
-7
lines changed Original file line number Diff line number Diff line change 1+ name : Backport
2+ on :
3+ pull_request_target :
4+ types : [ closed ]
5+ issue_comment :
6+ types : [ created ]
7+ permissions :
8+ contents : write
9+ pull-requests : write
10+ jobs :
11+ backport :
12+ name : Backport pull request
13+ runs-on : ubuntu-latest
14+ if : >
15+ (
16+ github.event_name == 'pull_request_target' &&
17+ github.event.pull_request.merged
18+ ) || (
19+ github.event_name == 'issue_comment' &&
20+ github.event.issue.pull_request &&
21+ github.event.comment.user.id != 97796249 &&
22+ startsWith(github.event.comment.body, '/backport')
23+ )
24+ steps :
25+ - uses : actions/checkout@v4
26+ - name : Create backport pull requests
27+ uses : korthout/backport-action@v3
28+ with :
29+ merge_commits : skip
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ name: CI
33on :
44 push :
55 branches :
6- - main
7- - " release- *"
6+ - " main"
7+ - " release/ *"
88 pull_request :
99 branches :
10- - main
11- - " release- *"
10+ - " main"
11+ - " release/ *"
1212
1313concurrency :
1414 group : trustify-operator-ci-${{ github.ref }}
5858 - name : Install required virtualization software
5959 run : |
6060 sudo apt-get update
61- sudo apt install qemu-kvm libvirt-daemon libvirt-daemon-system
61+ sudo apt install qemu-kvm libvirt-daemon libvirt-daemon-system virtiofsd
6262 sudo usermod -a -G libvirt $USER
6363 - name : Remove unwanted stuff to free up disk image
6464 run : |
@@ -117,4 +117,4 @@ jobs:
117117 needs : build-operator-bundle
118118 uses : trustification/trustify-ci/.github/workflows/global-ci.yml@main
119119 with :
120- operator_bundle : ttl.sh/trustify-operator-bundle-${{ github.sha }}:2h
120+ operator_bundle : ttl.sh/trustify-operator-bundle-${{ github.sha }}:2h
Original file line number Diff line number Diff line change 55 push :
66 branches :
77 - " main"
8- - " release- *"
8+ - " release/ *"
99 tags :
1010 - " v*"
1111
You can’t perform that action at this time.
0 commit comments