Skip to content

Commit fe637cb

Browse files
authored
Merge pull request #5 from rseng/add/sorted-tags
Adding changelog and ensuring that tags are sorted for 1.0.1
2 parents 266448b + d8103e0 commit fe637cb

3 files changed

Lines changed: 18 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# CHANGELOG
2+
3+
This file briefly lists changes associated with tagged (released) versions.
4+
Critical items to know are:
5+
6+
- renamed commands
7+
- deprecated / removed commands
8+
- changed defaults
9+
- backward incompatible changes (recipe or image file format?)
10+
- migration guidance (how to convert images?)
11+
- changed behaviour (recipe sections work differently)
12+
13+
## [master](https://github.com/rseng/good-first-issues/tree/master)
14+
- ensure tags are sorted (v1.0.1)
15+
- first tagged released associated with blog post (v1.0.0)
16+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ https://github.com/singularityhub/sregistry containers,singularity
3333
- name: Checkout Code
3434
uses: actions/checkout@v2
3535
- name: Generate First Issues
36-
uses: rseng/good-first-issues@v1.0.0
36+
uses: rseng/good-first-issues@v1.0.1
3737
with:
3838
repos-file: '.github/repos.txt'
3939
token: ${{ secrets.GITHUB_TOKEN }}

scripts/generate-first-issues.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
tags = tags + extra_tags
6868
if tags:
6969
tags = [x.replace(":", "").replace(" ", "-") for x in tags]
70+
tags.sort()
7071
content += "tags: %s\n" % (",".join(tags))
7172
for param in ["title", "html_url"]:
7273
content += '%s: "%s"\n' % (param, issue[param])

0 commit comments

Comments
 (0)