Releases: stefanbuck/github-issue-parser
Releases · stefanbuck/github-issue-parser
Release list
v3.0.0
3.0.0 (2022-10-19)
Bug Fixes
- deps: bump @actions/core from 1.9.1 to 1.10.0 (284e5eb)
- Ensure releases can be pinned to SHAs #23 (#39) (428eec3)
Features
BREAKING CHANGES
- Add
issue-bodyargument which is required from v3 onwards
To mitigate script injection attacks, github-issue-parser v3 will require workflow authors to pass the issue body as an argument. By doing so you will follow GitHub's Good practices for mitigating script injection attacks
- uses: stefanbuck/github-issue-parser@v3
id: issue-parser
with:
issue-body: ${{ github.event.issue.body }} # required
template-path: .github/ISSUE_TEMPLATE/bug-report.yml # optional but recommendedThe previous checkbox output produced this:
{
"laravel": true,
"svelte": true,
}whereas the new output will be an array like this
{
"fav_frameworks": ["Laravel", "Svelte"]
}v2.0.4
v2.0.3
v2.0.2
v2.0.1
v2.0.0
2.0.0 (2021-09-13)
Bug Fixes
BREAKING CHANGES
- Before this change, IDs defined in a GitHub issue template that included a hyphen got converted to dashes for the Action output. This was mainly done to ensure nice-looking output variables. However, this is confusing as discussed in #15 (comment).