generate #32
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: generate | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: [generate] | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Change file permissions | |
run: chmod +x ./generate.sh | |
- name: Generate client | |
run: ./generate.sh | |
- name: Set output variables | |
id: vars | |
run: | | |
echo ::set-output name=branch::generate-client-$(date +'%Y-%m-%d') | |
echo ::set-output name=commit_message::feat: generate client $(date +'%Y-%m-%d') | |
echo ::set-output name=title::Generated client $(date +'%Y-%m-%d') | |
echo ::set-output name=body::Generated client $(date +'%Y-%m-%d') | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: ${{ steps.vars.outputs.commit_message }} | |
title: ${{ steps.vars.outputs.title }} | |
body: ${{ steps.vars.outputs.body }} | |
branch: ${{ steps.vars.outputs.branch }} | |
base: main | |
labels: generate-client | |
delete-branch: true |