diff options
| author | Christoph Blecker <admin@toph.ca> | 2023-02-08 17:28:43 -0800 |
|---|---|---|
| committer | Christoph Blecker <admin@toph.ca> | 2023-02-08 17:28:43 -0800 |
| commit | 40c4fd254084bff2ef5040eb8b4ec583cddb5b42 (patch) | |
| tree | 3fc5be4cd180e5b8880788701399145216921672 /generator/README.md | |
| parent | 38cccebdcc4bdab5c30c881689bd43ab55a5194a (diff) | |
Update issue template for annual reports
Diffstat (limited to 'generator/README.md')
| -rw-r--r-- | generator/README.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/generator/README.md b/generator/README.md index 787dabd3..6c75e951 100644 --- a/generator/README.md +++ b/generator/README.md @@ -80,9 +80,12 @@ drop GitHub issue templates into the `generator/generated/` directory. You can generate the issues from these templates by running: ```bash -ls -1 generator/generated/*.md | xargs -L1 hub issue create -F +for i in $(ls -1 generator/generated/*.md); do hub issue create -F $i && rm $i; done ``` + You may run into rate limiting issues, which is why this command removes the + files after an issue has been successfully created. + ## Adding custom content |
