Skip to content

Commit

Permalink
chore: add conflict openapi yaml resolve actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tosaken1116 committed Apr 6, 2024
1 parent 8bebec6 commit 9045f9e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/resolve.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: rebase and rebuild openapi

on:
workflow_dispatch:

jobs:
rebase_and_rebuild_openapi:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.ref }}
- name: Rebase
run: git rebase main
- name: Rebuild OpenAPI
run: |
make build
- name: Commit and push
run: |
git config --global user.name "GitHub Actions Bot"
git config --global user.email "<[email protected]>"
git add .
git commit -m "Rebuild OpenAPI"
git push

0 comments on commit 9045f9e

Please sign in to comment.