Skip to content

Commit

Permalink
fix(ISSUE): Templates asignees added "" #100 (#101)
Browse files Browse the repository at this point in the history
When the new package is generated the custom issue template assignee
didnt  change to the GitHub username.

closes #100
  • Loading branch information
imAsparky committed Sep 17, 2021
1 parent e3ac506 commit aa1d5c7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -3,7 +3,7 @@ name: Bug report
about: Create a report to help us improve
title: "[BUG]:"
labels: bug
assignees: { { cookiecutter.github_username } }
assignees: "{{ cookiecutter.github_username }}"
---

**Describe the bug**
Expand Down
Expand Up @@ -3,7 +3,7 @@ name: Chore
about: A Chore that needs to be done
title: "[CHORE]:"
labels: chore
assignees: { { cookiecutter.github_username } }
assignees: "{{ cookiecutter.github_username }}"
---

**What is the chore?**
Expand Up @@ -3,7 +3,7 @@ name: Documentation request
about: Suggest documentaton for this project
title: "[DOCS]:"
labels: documentation
assignees: { { cookiecutter.github_username } }
assignees: "{{ cookiecutter.github_username }}"
---

**Describe alternatives you've considered**
Expand Down
Expand Up @@ -3,7 +3,7 @@ name: Feature request
about: Suggest an idea for this project
title: "[FEAT]:"
labels: enhancement
assignees: { { cookiecutter.github_username } }
assignees: "{{ cookiecutter.github_username }}"
---

**Is your feature request related to a problem? Please describe.**
Expand Down

0 comments on commit aa1d5c7

Please sign in to comment.