Skip to content

Commit 7ba72cc

Browse files
authored
Merge pull request #7129 from cblecker/update-issue
Update issue template for annual reports
2 parents 38ccceb + 40c4fd2 commit 7ba72cc

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

generator/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,12 @@ drop GitHub issue templates into the `generator/generated/` directory.
8080
You can generate the issues from these templates by running:
8181

8282
```bash
83-
ls -1 generator/generated/*.md | xargs -L1 hub issue create -F
83+
for i in $(ls -1 generator/generated/*.md); do hub issue create -F $i && rm $i; done
8484
```
8585

86+
You may run into rate limiting issues, which is why this command removes the
87+
files after an issue has been successfully created.
88+
8689

8790
## Adding custom content
8891

generator/annual-report/github_issue.tmpl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ Actions for the chair/organizer of the community group:
1515

1616
Once all the above items are complete, this issue may be `/close`'d
1717

18-
A template has already been generated for your group, and is available [here](https://git.k8s.io/community/{{.Dir}}/annual-report-{{lastYear}}.md).
19-
2018
Key dates:
2119
- Initial PR to communtiy repo should be opened by March 24th, {{now.UTC.Year}}
2220
- PR should be reviewed and merged by April 7th, {{now.UTC.Year}}
@@ -31,6 +29,7 @@ If you have any questions or concerns about this process, you may reach the Stee
3129
- The public mailing list [email protected]
3230
- The private mailing list [email protected] for any private or sensitive issues.
3331

32+
/assign {{range .Leadership.Chairs}}@{{.GitHub}} {{end}}
3433
/{{.Prefix}} {{.Label}}
3534
/committee steering
3635
/area annual-reports

0 commit comments

Comments
 (0)