From 45276f19ffe8f640aa0343af20309c9cac93700c Mon Sep 17 00:00:00 2001 From: Anand <40204976+anand2312@users.noreply.github.com> Date: Sat, 30 Sep 2023 23:12:21 +0530 Subject: [PATCH] fix: add git username and email --- .github/workflows/generate_types.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generate_types.yml b/.github/workflows/generate_types.yml index 614ef77..401bf6e 100644 --- a/.github/workflows/generate_types.yml +++ b/.github/workflows/generate_types.yml @@ -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 \ No newline at end of file + git push