Skip to content

Commit 2b8453f

Browse files
authored
Update cla bot token check
1 parent 92101c2 commit 2b8453f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/is-repo-lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,17 +150,17 @@ jobs:
150150
if: steps.codeql-analysis_file.outputs.file_exists == 'false'
151151
run: echo codeql-analysis file does not exist!
152152

153-
check-for-personal-access-token:
153+
check-for-cla-bot-gh-access-token:
154154
needs: public-or-private-repo
155155
if: needs.public-or-private-repo.outputs.repostate == 'public'
156156
runs-on: ubuntu-latest
157157
steps:
158158

159-
- name: Check for missing PERSONAL_ACCESS_TOKEN
159+
- name: Check for missing CLA_BOT_GH_ACCESS_TOKEN
160160
env:
161-
MY_KEY: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
161+
MY_KEY: ${{ secrets.CLA_BOT_GH_ACCESS_TOKEN }}
162162
if: "${{ env.MY_KEY == '' }}"
163163
uses: actions/github-script@v6
164164
with:
165165
script: |
166-
core.setFailed('PERSONAL_ACCESS_TOKEN secret is missing. It is needed to successfully run the CLA assistant.')
166+
core.setFailed('CLA_BOT_GH_ACCESS_TOKEN secret is missing. It is needed to successfully run the CLA assistant.')

0 commit comments

Comments
 (0)