Skip to content

Commit

Permalink
fix: workflow commit user (#3491)
Browse files Browse the repository at this point in the history
* fix: workflow commit user

* fix email
  • Loading branch information
tsctx authored Aug 21, 2024
1 parent 26004bf commit 69cfd97
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-create-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
node-version: '20'
- name: Git Config
run: |
git config --global user.email "github-actions@github.com"
git config --global user.name "github-actions"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Change version number and push
id: bump
run: |
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/update-wpt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
name: Update WPT
runs-on: ubuntu-latest
steps:
- name: Git Config
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Checkout Repository
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Update WPT
Expand Down

0 comments on commit 69cfd97

Please sign in to comment.