Skip to content

Commit

Permalink
add spaces to workflow names
Browse files Browse the repository at this point in the history
  • Loading branch information
geo-martino committed Mar 19, 2024
1 parent e4165b6 commit 38f3204
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "🚀 Deploy package to PyPI "
name: "🚀 Deploy package to PyPI "
run-name: "🚀 Deploy package to PyPI: ${{ github.ref_name }}"

on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 🏗️ Build documentation
name: "🏗️ Build documentation "

on:
pull_request_target:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 📃 Publish documentation
name: "📃 Publish documentation "

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ✅ Validate package deployment
name: "✅ Validate package deployment "

on:
pull_request_target:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
[![Contributors](https://img.shields.io/github/contributors/geo-martino/musify?logo=github&label=Contributors)](https://github.com/geo-martino/musify/graphs/contributors)
[![License](https://img.shields.io/github/license/geo-martino/musify?label=License)](https://github.com/geo-martino/musify/blob/master/LICENSE)
</br>
[![GitHub - Validate](https://github.com/geo-martino/musify/actions/workflows/validate.yml/badge.svg?branch=master)](https://github.com/geo-martino/musify/actions/workflows/validate.yml)
[![GitHub - Deployment](https://github.com/geo-martino/musify/actions/workflows/deploy.yml/badge.svg?event=release)](https://github.com/geo-martino/musify/actions/workflows/deploy.yml)
[![GitHub - Documentation](https://github.com/geo-martino/musify/actions/workflows/docs_publish.yml/badge.svg)](https://github.com/geo-martino/musify/actions/workflows/docs_publish.yml)

Expand Down
1 change: 1 addition & 0 deletions README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
[![Contributors](https://img.shields.io/github/contributors/{program_owner_user}/{program_name_lower}?logo=github&label=Contributors)](https://github.com/{program_owner_user}/{program_name_lower}/graphs/contributors)
[![License](https://img.shields.io/github/license/{program_owner_user}/{program_name_lower}?label=License)](https://github.com/geo-martino/musify/blob/master/LICENSE)
</br>
[![GitHub - Validate](https://github.com/geo-martino/musify/actions/workflows/validate.yml/badge.svg?branch=master)](https://github.com/{program_owner_user}/{program_name_lower}/actions/workflows/validate.yml)
[![GitHub - Deployment](https://github.com/{program_owner_user}/{program_name_lower}/actions/workflows/deploy.yml/badge.svg?event=release)](https://github.com/{program_owner_user}/{program_name_lower}/actions/workflows/deploy.yml)
[![GitHub - Documentation](https://github.com/{program_owner_user}/{program_name_lower}/actions/workflows/docs_publish.yml/badge.svg)](https://github.com/{program_owner_user}/{program_name_lower}/actions/workflows/docs_publish.yml)

Expand Down
2 changes: 1 addition & 1 deletion musify/shared/remote/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def _get_total_tracks(self, responses: list[dict[str, Any]]) -> int:
def log_playlists(self) -> None:
max_width = get_max_width(self.playlists)

self.logger.stat(f"\33[1;96m{self.api.source} PLAYLISTS: \33[0m")
self.logger.stat(f"\33[1;96m{self.api.source.upper()} PLAYLISTS: \33[0m")
for name, playlist in self.playlists.items():
name = align_string(playlist.name, max_width=max_width)
self.logger.stat(f"\33[97m{name} \33[0m| \33[92m{len(playlist):>6} total tracks \33[0m")
Expand Down

0 comments on commit 38f3204

Please sign in to comment.