-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup repository for draft-irtf-cfrg-voprf using https://github.com/m…
- Loading branch information
Christopher Wood
committed
Sep 26, 2020
1 parent
fbd93a2
commit 0246e59
Showing
6 changed files
with
135 additions
and
3 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,34 @@ | ||
name: "Archive Issues and Pull Requests" | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * 0,2,4' | ||
repository_dispatch: | ||
types: [archive] | ||
|
||
jobs: | ||
build: | ||
name: "Archive Issues and Pull Requests" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v2 | ||
|
||
- name: "Update Archive" | ||
uses: martinthomson/i-d-template@v1 | ||
with: | ||
make: archive | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: "Update GitHub Pages" | ||
uses: martinthomson/i-d-template@v1 | ||
with: | ||
make: gh-archive | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: "Save Archive" | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: archive.json |
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,60 @@ | ||
name: "Update Editor's Copy" | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- README.md | ||
- CONTRIBUTING.md | ||
- LICENSE.md | ||
- .gitignore | ||
pull_request: | ||
paths-ignore: | ||
- README.md | ||
- CONTRIBUTING.md | ||
- LICENSE.md | ||
- .gitignore | ||
|
||
jobs: | ||
build: | ||
name: "Update Editor's Copy" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v2 | ||
|
||
- name: "Cache Setup" | ||
id: cache-setup | ||
run: | | ||
mkdir -p "$HOME"/.cache/xml2rfc | ||
echo "::set-output name=path::$HOME/.cache/xml2rfc" | ||
date -u "+::set-output name=date::%FT%T" | ||
- name: "Cache References" | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.cache-setup.outputs.path }} | ||
key: refcache-${{ steps.cache-setup.outputs.date }} | ||
restore-keys: | | ||
refcache-${{ steps.cache-setup.outputs.date }} | ||
refcache- | ||
- name: "Build Drafts" | ||
uses: martinthomson/i-d-template@v1 | ||
|
||
- name: "Update GitHub Pages" | ||
uses: martinthomson/i-d-template@v1 | ||
if: ${{ github.event_name == 'push' }} | ||
with: | ||
make: gh-pages | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: "Save HTML" | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: "*.html" | ||
|
||
- name: "Save Text" | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: "*.txt" |
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,39 @@ | ||
name: "Publish New Draft Version" | ||
|
||
on: | ||
push: | ||
tags: | ||
- "draft-*" | ||
|
||
jobs: | ||
build: | ||
name: "Publish New Draft Version" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v2 | ||
|
||
# See https://github.com/actions/checkout/issues/290 | ||
- name: "Get Tag Annotations" | ||
run: git fetch -f origin ${{ github.ref }}:${{ github.ref }} | ||
|
||
- name: "Cache Setup" | ||
id: cache-setup | ||
run: | | ||
mkdir -p "$HOME"/.cache/xml2rfc | ||
echo "::set-output name=path::$HOME/.cache/xml2rfc" | ||
date -u "+::set-output name=date::%FT%T" | ||
- name: "Cache References" | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.cache-setup.outputs.path }} | ||
key: refcache-${{ steps.date.outputs.date }} | ||
restore-keys: | | ||
refcache-${{ steps.date.outputs.date }} | ||
refcache- | ||
- name: "Upload to Datatracker" | ||
uses: martinthomson/i-d-template@v1 | ||
with: | ||
make: upload |
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 |
---|---|---|
|
@@ -14,4 +14,3 @@ report.xml | |
venv/ | ||
lib | ||
draft-irtf-cfrg-voprf.xml | ||
.vscode |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<note title="Discussion Venues" removeInRFC="true"> | ||
<t>Source for this draft and an issue tracker can be found at | ||
<eref target="https://github.com/cfrg/draft-irtf-cfrg-voprf">https://github.com/cfrg/draft-irtf-cfrg-voprf</eref>.</t> | ||
<eref target="https://github.com/cfrg/draft-irtf-cfrg-voprf"/>.</t> | ||
</note> |
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