Add a github action for generating code.

This commit is contained in:
Brendan Burns
2022-05-29 14:52:11 +00:00
committed by GitHub
parent 49efc741c5
commit 086c76fbd1

70
.github/workflows/generate.yml vendored Normal file
View File

@@ -0,0 +1,70 @@
name: Generate
on:
workflow_dispatch:
inputs:
kubernetesBranch:
type: string
required: true
description: 'The remote kubernetes release branch to fetch openapi spec. .e.g. "release-1.23"'
genCommit:
type: string
required: true
default: 'master'
description: 'The commit to use for the kubernetes-client/gen repo'
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Checkout C
uses: actions/checkout@v3
- name: Checkout Gen
run: |
git clone https://github.com/kubernetes-client/gen
pushd gen
git checkout "${{ github.event.inputs.genCommit }}"
- name: Generate Branch Name
run: |
SUFFIX=$(openssl rand -hex 4)
echo "BRANCH=automated-generate-$SUFFIX" >> $GITHUB_ENV
- name: Generate Openapi
run: |
pushd gen/openapi
cat <<"EOF"> settings
# Kubernetes branch/tag to get the OpenAPI spec from.
export KUBERNETES_BRANCH="${{ github.event.inputs.kubernetesBranch }}"
# client version for packaging and releasing. It can
# be different than SPEC_VERSION.
export CLIENT_VERSION="0.3.0"
# Name of the release package
export PACKAGE_NAME="client"
# OpenAPI-Generator branch/tag to generate the client library
export OPENAPI_GENERATOR_COMMIT="master"
export USERNAME=kubernetes
EOF
bash c.sh ../../kubernetes settings
cp settings ../../settings
popd
rm -rf gen
- name: Commit and push
run: |
# Commit and push
git config user.email "k8s.ci.robot@gmail.com"
git config user.name "Kubernetes Prow Robot"
git checkout -b "$BRANCH"
git add .
git commit -s -m 'Automated openapi generation from ${{ github.event.inputs.kubernetesBranch }}'
git push origin "$BRANCH"
- name: Pull Request
uses: repo-sync/pull-request@v2
with:
source_branch: ${{ env.BRANCH }}
destination_branch: ${{ github.ref_name }}
github_token: ${{ secrets.GITHUB_TOKEN }}
pr_title: "Automated Generate from openapi ${{ github.event.inputs.kubernetesBranch }}"