Skip to content

Commit

Permalink
Merge pull request #5 from rseng/add/sorted-tags
Browse files Browse the repository at this point in the history
Adding changelog and ensuring that tags are sorted for 1.0.1
  • Loading branch information
vsoch authored Mar 2, 2020
2 parents 266448b + d8103e0 commit fe637cb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# CHANGELOG

This file briefly lists changes associated with tagged (released) versions.
Critical items to know are:

- renamed commands
- deprecated / removed commands
- changed defaults
- backward incompatible changes (recipe or image file format?)
- migration guidance (how to convert images?)
- changed behaviour (recipe sections work differently)

## [master](https://github.com/rseng/good-first-issues/tree/master)
- ensure tags are sorted (v1.0.1)
- first tagged released associated with blog post (v1.0.0)

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ https://github.com/singularityhub/sregistry containers,singularity
- name: Checkout Code
uses: actions/checkout@v2
- name: Generate First Issues
uses: rseng/[email protected].0
uses: rseng/[email protected].1
with:
repos-file: '.github/repos.txt'
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions scripts/generate-first-issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
tags = tags + extra_tags
if tags:
tags = [x.replace(":", "").replace(" ", "-") for x in tags]
tags.sort()
content += "tags: %s\n" % (",".join(tags))
for param in ["title", "html_url"]:
content += '%s: "%s"\n' % (param, issue[param])
Expand Down

0 comments on commit fe637cb

Please sign in to comment.