From 03e6ea0bcf78969aeb58d9705801b5581ce0c984 Mon Sep 17 00:00:00 2001 From: Brian <18603393+brian6932@users.noreply.github.com> Date: Tue, 24 Dec 2024 20:27:32 -0500 Subject: [PATCH] fix: Made GH actions filterable (frontend) --- .github/workflows/main.yml | 4 ++-- .github/workflows/update-3rd-party-assets.yml | 4 ++-- .github/workflows/update-easylist.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c8d2aca69a1..2e2a38b8ac2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,8 +49,8 @@ jobs: - name: Commit changes (if any) run: | if [[ -n $(git diff) ]]; then - git config user.name "gitHub-actions bot" - git config user.email "<>" + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git add -u filters/ git add -u thirdparties/ git add -u dnr/ diff --git a/.github/workflows/update-3rd-party-assets.yml b/.github/workflows/update-3rd-party-assets.yml index 7065811d58b..c94bff615de 100644 --- a/.github/workflows/update-3rd-party-assets.yml +++ b/.github/workflows/update-3rd-party-assets.yml @@ -24,8 +24,8 @@ jobs: - name: Commit changes, if any run: | if [[ -n $(git diff) ]]; then - git config user.name "github-actions bot" - git config user.email "<>" + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git add -u thirdparties/ git commit -m "Update all 3rd-party assets" git push origin master diff --git a/.github/workflows/update-easylist.yml b/.github/workflows/update-easylist.yml index 18256120edb..e449680267c 100644 --- a/.github/workflows/update-easylist.yml +++ b/.github/workflows/update-easylist.yml @@ -27,8 +27,8 @@ jobs: GH_TOKEN: ${{ github.token }} run: | if [[ -n $(git diff) ]]; then - git config user.name "github-actions bot" - git config user.email "<>" + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git add -u thirdparties/ git commit -m "Update Easylist assets" git pull --rebase origin master