Skip to content

Commit b6014ae

Browse files
authored
Merge pull request #17 from idkbrowby/anand/fix-ci
fix: add git username and email
2 parents 2cf8d7d + 45276f1 commit b6014ae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/generate_types.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
run: npx openapi-typescript https://gr.lnkshrt.xyz/openapi.json -o ./src/lib/api_schema.d.ts
1818
- name: Commit file
1919
run: |
20+
git config --global user.name github-actions[bot]
21+
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com
2022
git add src/lib/api_schema.d.ts
2123
git commit -m "chore: generate API types"
22-
git push
24+
git push

0 commit comments

Comments
 (0)