Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Temporarily use alternate default base url #35

Merged
merged 1 commit into from
Oct 4, 2022
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Check out the [Wiki](https://github.com/DenverCoder1/github-readme-youtube-cards
| `comment_tag_name` | The name in the comment tag for replacing content | "YOUTUBE-CARDS" |
| `youtube_api_key` | The API key to use for features marked with 🔑 | "" |
| `max_videos` | The maximum number of videos to display | 6 |
| `base_url` | The base URL to use for the cards | "https://ytcards.demolab.com/" |
| `base_url` | The base URL to use for the cards | "https://ytcards.vercel.app/" (may change) |
| `card_width` | The width of the SVG cards | 250 |
| `background_color` | The background color of the SVG cards | "#0d1117" |
| `title_color` | The color of the title text | "#ffffff" |
Expand Down
2 changes: 1 addition & 1 deletion action.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def update(readme_path: str, comment_tag: str, replace_content: str):
"--base-url",
dest="base_url",
help="Base URL for the readme",
default="https://ytcards.demolab.com/",
default="https://ytcards.vercel.app/",
)
parser.add_argument(
"--card-width",
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ inputs:
base_url:
description: "The base URL to use for the cards"
required: false
default: "https://ytcards.demolab.com/"
default: "https://ytcards.vercel.app/"
youtube_api_key:
description: "The YouTube API key to use for additional features such a the video duration"
required: false
Expand Down