Skip to content

Commit

Permalink
Add CI for workflows missing it
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-farache committed Jun 19, 2024
1 parent c3f9e6a commit facd833
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/create-ocp-project.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Create OCP project workflow container image and manifest push

on:
workflow_dispatch:
push:
branches: [ "main" ]
paths:
- 'create-ocp-project/**'
- 'pipeline/**'
- .github/workflows/create-ocp-project.yaml
- .github/workflows/main.yml

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
with:
workflow_id: create-ocp-project
secrets: inherit

19 changes: 19 additions & 0 deletions .github/workflows/modify-vm-resources.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Modify VM resource workflow container image and manifest push

on:
workflow_dispatch:
push:
branches: [ "main" ]
paths:
- 'modify-vm-resources/**'
- 'pipeline/**'
- .github/workflows/modify-vm-resources.yaml
- .github/workflows/main.yml

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
with:
workflow_id: modify-vm-resources
secrets: inherit

19 changes: 19 additions & 0 deletions .github/workflows/request-vm-cnv.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Request VM creation using CNV workflow container image and manifest push

on:
workflow_dispatch:
push:
branches: [ "main" ]
paths:
- 'request-vm-cnv/**'
- 'pipeline/**'
- .github/workflows/request-vm-cnv.yaml
- .github/workflows/main.yml

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
with:
workflow_id: request-vm-cnv
secrets: inherit

0 comments on commit facd833

Please sign in to comment.