Releases: JasonEtco/create-an-issue
v2.9.2
What's Changed
- readme: actions/checkout@ v2 -> v3 by @IdiosApps in #147
- Update actions version in readme and workflow file by @saerosV in #151
- Use node20 by @parkerbxyz in #176
New Contributors
Full Changelog: v2.9.1...v2.9.2
v2.9.1
v2.9.0
This release adds a new step to parsing the issue template, to validate the frontmatter in your template against a defined schema. That way, any missing or invalid fields (like a missing title) will be caught and get a proper error message.
I'm not marking this as a breaking change because the expected schema hasn't changed, now it's just enforcing it. Apologies if this does break anyones templates, but that's a good thing as it'd be pointing out something invalid about it!
v2.8.2
Fixes a bug where quotes in issue titles would cause the search for existing issues to return issues that were incorrectly considered a match.
Also updates some CI versions, and minor adjustments to typings.
v2.8.1
Fixes a bug with the search_existing
input being set to all
, which caused it to return no results in the underlying search.
v2.8.0
This update bumps a number of dependencies, including the version of Node the action runs in from Node 12 to 16.
v2.6.0
What's Changed
- Add updating existing open issue with the same title if it exists by @PrinsFrank in #71
- Fix readme wording for option to update existing issue by @PrinsFrank in #77
- Bump node-notifier from 8.0.0 to 8.0.1 by @dependabot in #79
- Update publish.yml by @JasonEtco in #87
- Support repo.repo and repo.owner as template variables by @NathanielRN in #114
- Skip updating an existing issue when update_existing=false. by @dblock in #112
- Added search_existing param. by @dblock in #111
- Update deps by @JasonEtco in #117
New Contributors
- @PrinsFrank made their first contribution in #71
- @NathanielRN made their first contribution in #114
- @dblock made their first contribution in #112
Full Changelog: v2.4.0...v2.6.0
v2.5.0
v2.4.0
This release adds support for environment variables in issue templates, thanks to @sunt05 over in #53.
It also updates some dependencies, including actions-toolkit
- v4.0.0
now provides a better error message when a file cannot be found, and suggests adding the actions/checkout
action (to avoid issues like #29 )