Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rnystrom/create-child-issues
Action to generate child issues with labels.
https://github.com/rnystrom/create-child-issues
Last synced: 3 months ago
JSON representation
Action to generate child issues with labels.
- Host: GitHub
- URL: https://github.com/rnystrom/create-child-issues
- Owner: rnystrom
- License: mit
- Created: 2020-05-01T19:33:26.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T15:11:36.000Z (about 2 years ago)
- Last Synced: 2024-10-05T08:33:44.948Z (4 months ago)
- Language: JavaScript
- Size: 1000 KB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - rnystrom/create-child-issues - Action to generate child issues with labels. (JavaScript)
README
# Create Child Issues
Example `create-child-issues.yml` using this action:
```yml
name: Create child issues
on:
issues:
types: [labeled]jobs:
build:
name: Create child issues
runs-on: ubuntu-latest
steps:
- uses: rnystrom/create-child-issues@master
#important to prevent over generating
if: github.event.label.name == 'make'
with:
label: 'make'
repos: 'rnystrom/demo-repo'
```This will generate an issue in `rnystrom/demo-repo` any time the "make" label is applied to an issue. The child issue will simply include a link to the parent. The parent will be appended with checklist links to child issues. Example:
#### Generated child issues:
- [ ] https://github.com/rnystrom/demo-project/issues/42
This checklist is automatically generated by the
create-child-issues
action. Please do not modify.