Skip to content

Commit 03e6ea0

Browse files
committed
fix: Made GH actions filterable (frontend)
1 parent e4b6af6 commit 03e6ea0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ jobs:
4949
- name: Commit changes (if any)
5050
run: |
5151
if [[ -n $(git diff) ]]; then
52-
git config user.name "gitHub-actions bot"
53-
git config user.email "<>"
52+
git config user.name "github-actions[bot]"
53+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
5454
git add -u filters/
5555
git add -u thirdparties/
5656
git add -u dnr/

.github/workflows/update-3rd-party-assets.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
- name: Commit changes, if any
2525
run: |
2626
if [[ -n $(git diff) ]]; then
27-
git config user.name "github-actions bot"
28-
git config user.email "<>"
27+
git config user.name "github-actions[bot]"
28+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
2929
git add -u thirdparties/
3030
git commit -m "Update all 3rd-party assets"
3131
git push origin master

.github/workflows/update-easylist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
GH_TOKEN: ${{ github.token }}
2828
run: |
2929
if [[ -n $(git diff) ]]; then
30-
git config user.name "github-actions bot"
31-
git config user.email "<>"
30+
git config user.name "github-actions[bot]"
31+
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
3232
git add -u thirdparties/
3333
git commit -m "Update Easylist assets"
3434
git pull --rebase origin master

0 commit comments

Comments
 (0)