Skip to content

Commit b0eb63a

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 758fe26 commit b0eb63a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def run(self) -> None:
107107
)
108108
raise SystemExit(1)
109109
else:
110-
gha_utils.notice("Everything is up-to-date! \U0001F389 \U0001F389")
110+
gha_utils.notice("Everything is up-to-date! \U0001f389 \U0001f389")
111111

112112
def _update_workflow(self, workflow_path: str) -> set[str]:
113113
"""Update the workflow file with the updated data"""

src/utils.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def create_pull_request(
4242
if response.status_code == 201:
4343
response_data = response.json()
4444
gha_utils.notice(
45-
f"Pull request opened at {response_data['html_url']} \U0001F389"
45+
f"Pull request opened at {response_data['html_url']} \U0001f389"
4646
)
4747
return response_data["number"]
4848

@@ -94,7 +94,7 @@ def add_pull_request_reviewers(
9494
gha_utils.notice(
9595
"Requested review from "
9696
f"{pull_request_user_reviewers.union(pull_request_team_reviewers)} "
97-
"\U0001F389"
97+
"\U0001f389"
9898
)
9999
return
100100

@@ -130,7 +130,7 @@ def add_pull_request_labels(
130130
if response.status_code == 200:
131131
gha_utils.notice(
132132
f"Added '{labels}' labels to "
133-
f"pull request #{pull_request_number} \U0001F389"
133+
f"pull request #{pull_request_number} \U0001f389"
134134
)
135135
return
136136

@@ -167,8 +167,8 @@ def display_whats_new() -> None:
167167
latest_release_body = response_data["body"]
168168

169169
group_title = (
170-
"\U0001F389 What's New In "
171-
f"GitHub Actions Version Updater {latest_release_tag} \U0001F389"
170+
"\U0001f389 What's New In "
171+
f"GitHub Actions Version Updater {latest_release_tag} \U0001f389"
172172
)
173173

174174
with gha_utils.group(group_title):

0 commit comments

Comments
 (0)