Skip to content

Commit 4a6ea24

Browse files
committed
build: update auto-lint config
1 parent f7148a3 commit 4a6ea24

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
# Setup
5252
- uses: actions/checkout@v2
5353
with:
54-
token: ${{ secrets.MADSCI_BUILD_USER_TOKEN }} # allows commit of any fixes to trigger a new workflow run
54+
token: ${{ secrets.BUILD_USER_TOKEN || github.token }} # allows commit of any fixes to trigger a new workflow run
5555
- name: Use Node.js 16.x
5656
uses: actions/setup-node@v2
5757
with:
@@ -72,9 +72,9 @@ jobs:
7272
eslint: true
7373
eslint_args: "--ext '.ts,.js' --ignore-path '.gitignore' --ignore-pattern '.github/*'"
7474
continue_on_error: false
75-
auto_fix: true
76-
git_name: Madbot
77-
git_email: [email protected].com
75+
auto_fix: ${{ secrets.BUILD_USER_TOKEN && 'true' || 'false' }}
76+
git_name: equabot
77+
git_email: git@equalogic.com
7878

7979
#
8080
# build job

0 commit comments

Comments
 (0)