From 2d18988ce79570ca9873be38bf9252915a150754 Mon Sep 17 00:00:00 2001 From: Wesley Luyten Date: Thu, 19 Dec 2024 17:38:49 -0600 Subject: [PATCH] chore: check what PR user login is --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31cd8d729..1f1d1f1bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,12 +38,11 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} lint: - # Don't run if the CI is triggered by Release Please - if: ${{ github.event.pull_request.user.login != 'github-actions[bot]' }} - runs-on: ubuntu-latest steps: + - name: View PR author + run: echo "This PR is opened by ${{ github.event.pull_request.user.login }}" - uses: actions/checkout@v4 - name: read node version from the .nvmrc file run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)