Releases: rseng/good-first-issues
Releases · rseng/good-first-issues
Version 1.0.4 Release Good First Issues
Version 1.0.3 Release Good First Issues
This version includes two bug fixes:
- the repos.txt file can have a repository address without tags (this would previously result in an error)
- the title for the issue is parsed with json.dumps to handle escaping quotes, etc.
Version 1.0.2 Release Good First Issues
This version 1.0.2 includes:
- fixes a bug where if there is a line in repos.txt without a tag, there is an error. Repos can now be listed without extra tags provided in repos.txt
- the user can specify a specific collection name to output to (defaults to "issues" meaning an "_issues" folder.) This generally corresponds to the name of the subfolder in docs, so it could be used for something other than a collection - the user is allowed to specify any folder name that is appropriate.
- label is added as a variable so that good first issues is the default, but doesn't necessarily need to be used.
Version 1.0.1 Release
Version 1.0.1 adds a fix to sort tags, so that an "update" with simply a different ordering of the tags is not represented as actually being different. See https://github.com/rseng/good-first-issues/ for current usage.
Version 1.0.0 Release
This is the first release of good-first-issues. See the repository for details:
https://github.com/rseng/good-first-issues
Example usage for this release is:
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Generate First Issues
uses: rseng/[email protected]
with:
repos-file: '.github/repos.txt'
token: ${{ secrets.GITHUB_TOKEN }}
where repos-file is optional, and defaults to repos.txt in the base of the repository.
Version 1.0.0 Release Candidate 1
add interface screenshot Signed-off-by: vsoch <[email protected]>