-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add two repositories: `calendar-generation` contains a utility that will generate an iCalendar document from TOML files containing the events, and `calendar` contains TOML files and CI configuration to use `calendar-generation` to generate and then host the calendar documents on GitHub Pages. Signed-off-by: David Wood <[email protected]>
- Loading branch information
1 parent
a9ba0cb
commit 83e933f
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
org = "rust-lang" | ||
name = "calendar-generation" | ||
description = "Generate iCalendar documents from calendar specifications in TOML. See rust-lang/calendar." | ||
bots = ["rustbot"] | ||
|
||
[access.teams] | ||
compiler = "write" | ||
infra = "write" | ||
|
||
[[branch-protections]] | ||
pattern = "main" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
org = "rust-lang" | ||
name = "calendar" | ||
description = "Calendars for Rust project teams" | ||
bots = ["rustbot"] | ||
|
||
[access.teams] | ||
compiler = "maintain" | ||
compiler-contributors = "maintain" | ||
crates-io = "maintain" | ||
docs-rs = "maintain" | ||
infra = "maintain" | ||
lang = "maintain" | ||
leadership-council = "maintain" | ||
libs = "maintain" | ||
release = "maintain" | ||
|
||
[[branch-protections]] | ||
pattern = "main" |