Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebolewski committed Nov 10, 2021
1 parent 4da93bd commit 80bb4d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
{{ custom }}
{% endif %}
## πŸ“’ API Changes:
### πŸ“’ API Changes:
{% if issues %}
{% for issue in issues if 'API' in issue.labels %}
- {{ issue.title }} (#{{ issue.number }})
Expand All @@ -36,19 +36,19 @@ jobs:
{% endfor %}
{% endif %}
## πŸš€ Features
### πŸš€ Features
{% if issues %}
{% for issue in issues if 'enhancement' in issue.labels or 'feature' in issue.labels %}
- {{ issue.title }} (#{{ issue.number }})
{% endfor}
{% endfor %}
{% endif %}
{% if pulls %}
{% for pull in pulls if 'enhancement' in pull.labels or 'feature' in pull.labels %}
- {{ pull.title }} (#{{ pull.number }}) (@{{ pull.author.username }})
{% endfor %}
{% endif %}
## πŸ“‘ Documentation
### πŸ“‘ Documentation
{% if issues %}
{% for issue in issues if 'documentation' in issue.labels %}
- {{ issue.title }} (#{{ issue.number }})
Expand All @@ -60,7 +60,7 @@ jobs:
{% endfor %}
{% endif %}
## πŸ› Fixes
### πŸ› Fixes
{% if issues %}
{% for issue in issues if 'bug' in issue.labels %}
- {{ issue.title }} (#{{ issue.number }})
Expand Down

0 comments on commit 80bb4d6

Please sign in to comment.