This commit is contained in:
Joe Milazzo 2025-03-02 17:55:23 -06:00 committed by GitHub
parent 78a98d0d18
commit 5af851af08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 264 additions and 117 deletions

View file

@ -21,6 +21,7 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.REPO_GHA_PAT }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
@ -59,7 +60,12 @@ jobs:
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
# Pull latest changes with rebase to avoid merge commits
git pull --rebase origin develop
# Commit and push
git commit -m "Update OpenAPI documentation" openapi.json
git push
env:
GITHUB_TOKEN: ${{ secrets.REPO_GHA_PAT }}
GITHUB_TOKEN: ${{ secrets.REPO_GHA_PAT }}