Skip to content

Commit ad6e47b

Browse files
committed
Apply code review findings
1 parent 7557b7a commit ad6e47b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/csv-coverage-update.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
jobs:
99
update:
1010
name: Update framework coverage report
11+
if: github.event.repository.fork == false
1112
runs-on: ubuntu-latest
1213

1314
steps:

misc/scripts/library-coverage/create-pr.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,9 @@ def create_pr(repo, from_branch, to_branch):
101101
["gh", "pr", "close", str(already_open_pr), "-R", repo])
102102
else:
103103
utils.subprocess_run(["git", "config", "user.name",
104-
"CodeQL GitHub Actions Bot"])
105-
utils.subprocess_run(["git", "config", "user.email", "<>"])
104+
"github-actions[bot]"])
105+
utils.subprocess_run(["git", "config", "user.email",
106+
"41898282+github-actions[bot]@users.noreply.github.com"])
106107
utils.subprocess_run(["git", "add", "."])
107108
utils.subprocess_run(
108109
["git", "commit", "-m", "Add changed framework coverage reports"])

0 commit comments

Comments
 (0)