Code Generation #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Code Generation" | |
on: workflow_dispatch | |
permissions: | |
contents: write | |
jobs: | |
generation-job: | |
runs-on: ubuntu-latest | |
container: | |
image: openapitools/openapi-generator-cli:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run code generation | |
run: (bash /usr/local/bin/docker-entrypoint.sh generate -i blob/v0.0.1.json --additional-properties moduleName=VultRuby --skip-validate-spec -g ruby ) | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: . | |
pull-request-job: | |
runs-on: ubuntu-latest | |
needs: generation-job | |
steps: | |
- name: Download all workflow artifacts | |
uses: actions/download-artifact@v3 | |
- name: Debug workflow | |
run: find . | |
- name: Create pull request | |
working-directory: /home/runner/work/vultr-ruby/vultr-ruby/artifact | |
run: gh pr create --title 'Automatic updates by generator' --body 'Created by Github action' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |