We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7148a3 commit 4a6ea24Copy full SHA for 4a6ea24
.github/workflows/build.yml
@@ -51,7 +51,7 @@ jobs:
51
# Setup
52
- uses: actions/checkout@v2
53
with:
54
- token: ${{ secrets.MADSCI_BUILD_USER_TOKEN }} # allows commit of any fixes to trigger a new workflow run
+ token: ${{ secrets.BUILD_USER_TOKEN || github.token }} # allows commit of any fixes to trigger a new workflow run
55
- name: Use Node.js 16.x
56
uses: actions/setup-node@v2
57
@@ -72,9 +72,9 @@ jobs:
72
eslint: true
73
eslint_args: "--ext '.ts,.js' --ignore-path '.gitignore' --ignore-pattern '.github/*'"
74
continue_on_error: false
75
- auto_fix: true
76
- git_name: Madbot
77
- git_email: [email protected].com
+ auto_fix: ${{ secrets.BUILD_USER_TOKEN && 'true' || 'false' }}
+ git_name: equabot
+ git_email: git@equalogic.com
78
79
#
80
# build job
0 commit comments