Public Access
DEVX-174: fix(ci): supply git identity for dep-PR manifest commits
This commit was merged in pull request #342.
This commit is contained in:
@@ -661,6 +661,10 @@ class TestBranchCreation:
|
||||
# PR title carries the task ID
|
||||
assert client.create_pr.call_args.kwargs["title"] == "OBL-INFRA-581: Bump sso_bridge to 0.9.1"
|
||||
mock_task.assert_called_once()
|
||||
# Commit supplies an explicit identity (fresh clones have none)
|
||||
commit = next(c for c in subprocess.run.call_args_list if "commit" in c.args[0])
|
||||
assert "user.name=gitea-actions-bot" in commit.args[0]
|
||||
assert "user.email=actions@oblachno.fyi" in commit.args[0]
|
||||
|
||||
def test_retries_404_until_published(self) -> None:
|
||||
import requests
|
||||
|
||||
Reference in New Issue
Block a user