-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Adrian Palacios <[email protected]>
- Loading branch information
1 parent
919c774
commit 44de989
Showing
7 changed files
with
70 additions
and
1 deletion.
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,25 @@ | ||
name: Deploy Book | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup mdBook | ||
uses: peaceiris/actions-mdbook@v2 | ||
with: | ||
mdbook-version: 'latest' | ||
|
||
- run: mdbook build | ||
|
||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./book |
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
File renamed without changes.
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,9 @@ | ||
[book] | ||
authors = ["Cedar Contributors"] | ||
language = "en" | ||
multilingual = false | ||
src = "text" | ||
title = "Cedar RFC Book" | ||
|
||
[output.html] | ||
no-section-label = true |
File renamed without changes.
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,24 @@ | ||
[Introduction](./intro.md) | ||
[RFC Template](./0000-template.md) | ||
|
||
# Cedar RFCs | ||
|
||
- [0005-is-operator](0005-is-operator.md) | ||
- [0009-disallow-whitespace-in-entityuid](0009-disallow-whitespace-in-entityuid.md) | ||
- [0019-stricter-validation](0019-stricter-validation.md) | ||
- [0020-unique-record-keys](0020-unique-record-keys.md) | ||
- [0021-any-and-all-operators](0021-any-and-all-operators.md) | ||
- [0024-schema-syntax](0024-schema-syntax.md) | ||
- [0032-port-formalization-to-lean](0032-port-formalization-to-lean.md) | ||
- [0034-precomputed-entity-attributes](0034-precomputed-entity-attributes.md) | ||
- [0048-schema-annotations](0048-schema-annotations.md) | ||
- [0052-reserved-namespaces](0052-reserved-namespaces.md) | ||
- [0053-enum-entities](0053-enum-entities.md) | ||
- [0055-remove-unspecified](0055-remove-unspecified.md) | ||
- [0057-general-multiplication](0057-general-multiplication.md) | ||
- [0062-extended-has](0062-extended-has.md) | ||
- [0070-disallow-empty-namespace-shadowing](0070-disallow-empty-namespace-shadowing.md) | ||
- [0071-trailing-commas](0071-trailing-commas.md) | ||
- [0076-entity-slice-validation](0076-entity-slice-validation.md) | ||
- [0080-datetime-extension](0080-datetime-extension.md) | ||
- [0082-entity-tags](0082-entity-tags.md) |
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 @@ | ||
# Introduction | ||
|
||
[Cedar](https://www.cedarpolicy.com/en) | ||
is an open source policy language and evaluation engine. | ||
This book collects all the accepted RFCs | ||
([Request for Comments](https://en.wikipedia.org/wiki/Request_for_Comments)) for Cedar, | ||
providing a central repository for easier access and reference. | ||
|
||
# RFC Status | ||
|
||
<!-- TBD --> |