Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion coverage_comment/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"GIT_COMMITTER_NAME": GITHUB_ACTIONS_BOT_NAME,
"GIT_COMMITTER_EMAIL": GITHUB_ACTIONS_BOT_EMAIL,
}
GIT_COMMIT_MESSAGE = "Update coverage data"
GIT_COMMIT_MESSAGE = "ci: Update coverage data"


@contextlib.contextmanager
Expand Down
6 changes: 3 additions & 3 deletions tests/integration/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def test_action__push__default_branch(
git.register("git add htmlcov")()
git.register("git add README.md")()
git.register("git diff --staged --exit-code")(exit_code=1)
git.register("git commit --message Update coverage data")()
git.register("git commit --message ci: Update coverage data")()
git.register("git push origin python-coverage-comment-action-data")()
git.register("git switch foo")()

Expand Down Expand Up @@ -692,7 +692,7 @@ def test_action__pull_request_closed_merged(
git.register("git add htmlcov")()
git.register("git add README.md")()
git.register("git diff --staged --exit-code")(exit_code=1)
git.register("git commit --message Update coverage data")()
git.register("git commit --message ci: Update coverage data")()
git.register("git push origin python-coverage-comment-action-data")()
git.register("git switch foo")()

Expand Down Expand Up @@ -734,7 +734,7 @@ def test_action__push__default_branch__private(
git.register("git add badge.svg")()
git.register("git add README.md")()
git.register("git diff --staged --exit-code")(exit_code=1)
git.register("git commit --message Update coverage data")()
git.register("git commit --message ci: Update coverage data")()
git.register("git push origin python-coverage-comment-action-data")()
git.register("git switch foo")()

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def test_commit_operations(git, in_tmp_path):
# (yes, it's missing the quotes, but this is just an artifact from our test
# double)
git.register(
"git commit --message Update coverage data",
"git commit --message ci: Update coverage data",
env={
"GIT_AUTHOR_NAME": "github-actions",
"GIT_AUTHOR_EMAIL": "41898282+github-actions[bot]@users.noreply.github.com",
Expand Down
Loading