From 6e163886ae56cf96b599a7434dbaf387d73e0361 Mon Sep 17 00:00:00 2001 From: Hyung-Gi <42402378+kim201212@users.noreply.github.com> Date: Wed, 11 May 2022 18:27:11 +0900 Subject: [PATCH] Edit CI_proto_auto_complile.yml --- .github/workflows/CI_proto_auto_compile.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/CI_proto_auto_compile.yml b/.github/workflows/CI_proto_auto_compile.yml index c65c84b..b79682a 100644 --- a/.github/workflows/CI_proto_auto_compile.yml +++ b/.github/workflows/CI_proto_auto_compile.yml @@ -11,7 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out source code - uses: actions/checkout@v1 + uses: actions/checkout@v2 + with: + token: ${{ secrets.TOKEN }} - name: Set up Go uses: actions/setup-go@v2 with: @@ -35,13 +37,13 @@ jobs: - name: Install Protoc run: | make compile - - name: Commit files - run: | - git config --local user.name "xellos00" - git add ./ - git commit -m "compile and update with compiled pb.go(s)" + - name: Commit changes + uses: EndBug/add-and-commit@v9 + with: + default_author: github_actions + message: 'compile and update with compiled pb.go(s)' + add: '*' - name: Push changes uses: ad-m/github-push-action@master with: - github_token: ${{ secrets.VATZ_PROTO_COMPILE_TOKEN }} - force: true \ No newline at end of file + force: true