summaryrefslogtreecommitdiff
path: root/generator/README.md
diff options
context:
space:
mode:
authorChristoph Blecker <admin@toph.ca>2023-02-08 17:28:43 -0800
committerChristoph Blecker <admin@toph.ca>2023-02-08 17:28:43 -0800
commit40c4fd254084bff2ef5040eb8b4ec583cddb5b42 (patch)
tree3fc5be4cd180e5b8880788701399145216921672 /generator/README.md
parent38cccebdcc4bdab5c30c881689bd43ab55a5194a (diff)
Update issue template for annual reports
Diffstat (limited to 'generator/README.md')
-rw-r--r--generator/README.md5
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