Skip to content

Commit

Permalink
fix: add git username and email
Browse files Browse the repository at this point in the history
  • Loading branch information
anand2312 authored Sep 30, 2023
1 parent 2cf8d7d commit 45276f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/generate_types.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
run: npx openapi-typescript https://gr.lnkshrt.xyz/openapi.json -o ./src/lib/api_schema.d.ts
- name: Commit file
run: |
git config --global user.name github-actions[bot]
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com
git add src/lib/api_schema.d.ts
git commit -m "chore: generate API types"
git push
git push

0 comments on commit 45276f1

Please sign in to comment.