Skip to content

Commit 8460090

Browse files
committed
chore: remove any custom user name references in release workflow
1 parent 6bd6ecd commit 8460090

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/check-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
- name: Test
3131
run: yarn test:coverage
3232
env:
33-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
GITHUB_TOKEN: ${{ secrets.DOCUSAURUS_GH_TOKEN }}

.github/workflows/next-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525
registry-url: 'https://registry.npmjs.org'
2626
- name: Prepare git
2727
run: |
28-
git config --global user.name "Steve Galili"
29-
git config --global user.email "steve.galili@getstream.io"
28+
git config --global user.name 'github-actions'
29+
git config --global user.email 'release@getstream.io'
3030
- name: Install && Build - SDK and Sample App
3131
uses: ./.github/actions/install-and-build-sdk
3232
- name: Lint
3333
run: yarn lerna-workspaces run lint && (cd docusaurus; npx prettier --check '**/*.mdx')
3434
- name: Test
3535
run: yarn test:coverage
3636
env:
37-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
GITHUB_TOKEN: ${{ secrets.DOCUSAURUS_GH_TOKEN }}
3838
- name: Publish Next Release
3939
run: GITHUB_SHORT_SHA="$(git rev-parse --short $GITHUB_SHA)" yarn release-next
4040
env:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
registry-url: 'https://registry.npmjs.org'
2727
- name: Prepare git
2828
run: |
29-
git config --global user.name "Steve Galili"
30-
git config --global user.email "steve.galili@getstream.io"
29+
git config --global user.name 'github-actions'
30+
git config --global user.email 'release@getstream.io'
3131
- name: Install && Build - SDK and Sample App
3232
uses: ./.github/actions/install-and-build-sdk
3333
- name: Lint

.github/workflows/vale-doc-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
env:
2323
# Required, set by GitHub actions automatically:
2424
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret
25-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
25+
GITHUB_TOKEN: ${{ secrets.DOCUSAURUS_GH_TOKEN }}

0 commit comments

Comments
 (0)