latex-template

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 48a7d68568e03c12999b98a47502954535e2707b
parent f38299c597bf6aba1bb2329d5054dd3b4aa3d4a6
Author: minerva-jupiter <ryouturn@gmail.com>
Date:   Thu, 17 Apr 2025 19:59:22 +0900

update prbuild

Diffstat:
M.github/workflows/PRbuild.yaml | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/PRbuild.yaml b/.github/workflows/PRbuild.yaml @@ -19,4 +19,10 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} URL: ${{ github.event.pull_request.html_url }} - run: gh pr comment --body-file ./main.pdf "${URL}" + run: | + git config user.name "GitHub Actions Bot" + git config user.email "<>" + git add main.pdf + git commit -m "Add PDF to PR" + git push +