From 876bdf457092d0a7c079a85049606c1fa323ffda Mon Sep 17 00:00:00 2001 From: Logan McAnsh Date: Mon, 10 Jan 2022 15:03:21 -0500 Subject: [PATCH] ci: checkout repo using custom token (#8573) --- .github/workflows/format.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 8c38503718..c934ff1fb5 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - dev jobs: format: @@ -15,6 +16,8 @@ jobs: - name: Checkout Repository uses: actions/checkout@v2 + with: + token: ${{ secrets.FORMAT_TOKEN }} - name: Use Node.js uses: actions/setup-node@v2 @@ -29,7 +32,7 @@ jobs: - name: Commit run: | - git config --local user.email "github-actions@remix.run" + git config --local user.email "hello@remix.run" git config --local user.name "Remix Run Bot" git add .