Skip to content

Commit 60effca

Browse files
committed
update
1 parent 3a8392b commit 60effca

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

sprout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def should_skip_file(relative_path: str, answers: dict[str, Any]) -> bool:
161161
if relative_path == "LICENSE.jinja" and answers.get("copyright_license") == "None":
162162
return True
163163
if (
164-
relative_path == ".github/workflows/tests.yml.jinja"
164+
relative_path == ".github/workflows/test.yml.jinja"
165165
and "tests" not in github_actions
166166
):
167167
return True
File renamed without changes.

template/README.md.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{%- set is_github_repo = repository_url.startswith("https://github.com/") %}
66

77
{%- if 'tests' in github_actions %}
8-
[![Tests]({{ repository_url }}/actions/workflows/tests.yml/badge.svg)]({{ repository_url }}/actions/workflows/tests.yml)
8+
[![Tests]({{ repository_url }}/actions/workflows/test.yml/badge.svg)]({{ repository_url }}/actions/workflows/test.yml)
99
{%- endif %}
1010
[![PyPI version](https://badge.fury.io/py/{{ repo_name }}.svg)](https://badge.fury.io/py/{{ repo_name }})
1111
![Supported versions](https://img.shields.io/badge/python-{{ python_min_version }}+-blue.svg)

0 commit comments

Comments
 (0)