Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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.