forked from ManageIQ/kubevirt-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 1.01 KB
/
openapi-generate.yml
File metadata and controls
36 lines (34 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Update gem from OpenAPI Spec
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
openapi-generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up system
run: sudo apt install -y xq
- name: OpenAPI Generate
run: bin/openapi-generate
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
add-paths: |
.openapi-generator
docs
lib
README.md
spec
commit-message: Update kubevirt gem
branch: openapi_generate
author: ManageIQ Bot <bot@manageiq.org>
committer: ManageIQ Bot <bot@manageiq.org>
delete-branch: true
labels: enhancement
assignee: agrare
push-to-fork: miq-bot/kubevirt-sdk-ruby
title: Update kubevirt gem
body: Update the kubevirt-sdk-ruby gem from the kubevirt openapi-spec https://github.com/kubevirt/kubevirt/tree/main/api/openapi-spec
token: ${{ secrets.PR_TOKEN }}