Skip to content

Commit

Permalink
Fix typo in issue template and switch to use gh for creating issues
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Szulik <[email protected]>
  • Loading branch information
soltysh committed Jan 15, 2025
1 parent ac80043 commit a0ad464
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion generator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ drop GitHub issue templates into the `generator/generated/` directory.
You can generate the issues from these templates by running:

```bash
for i in $(ls -1 generator/generated/*.md); do hub issue create -F $i && rm $i; done
for i in $(ls -1 generator/generated/*.md); do gh issue create --repo kubernetes/community --title="$(head -n 1 $i)" --body-file $i && rm $i; done
```

You may run into rate limiting issues, which is why this command removes the
Expand Down
4 changes: 2 additions & 2 deletions generator/annual-report/github_issue.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Actions for the chair/organizer of the community group:
Once all the above items are complete, this issue may be `/close`'d

Key dates:
- Initial PR to communtiy repo should be opened by May 1, {{now.UTC.Year}}
- PR should be reviewed and merged by May 22, {{now.UTC.Year}}
- Initial PR to community repo should be opened by February 14, {{now.UTC.Year}}
- PR should be reviewed and merged by February 28, {{now.UTC.Year}}

More detailed information on the annual reports process is available [here](https://git.k8s.io/community/committee-steering/governance/annual-reports.md).

Expand Down

0 comments on commit a0ad464

Please sign in to comment.