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 e298f03 commit 2fb905aCopy full SHA for 2fb905a
.github/workflows/release.yml
@@ -7,6 +7,7 @@ on:
7
jobs:
8
publish-rc:
9
runs-on: ubuntu-latest
10
+ if: "!contains(github.event.head_commit.author.name, 'Github Actions')"
11
env:
12
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
13
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -21,7 +22,7 @@ jobs:
21
22
- name: Configure Git User
23
run: |
24
git config --global user.email "[email protected]"
- git config --global user.name "@$GITHUB_ACTOR"
25
+ git config --global user.name "Github Actions"
26
- name: Authenticate with Registry
27
28
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
0 commit comments