Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test #1

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/auto_create_pr_checklist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Auto Create PR Checklist

on:
pull_request:
types:
- opened

jobs:
create_checklist:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Create PR Checklist
run: |
echo "- [ ] Did you check your grammar / reader proof your document using ChatGPT?" >> $GITHUB_WORKSPACE/$GITHUB_EVENT_NAME.md
echo "- [ ] After merging this, please update your task status!" >> $GITHUB_WORKSPACE/$GITHUB_EVENT_NAME.md

- name: Commit and Push Changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add $GITHUB_EVENT_NAME.md
git commit -m "Add checklist to PR description" -a
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Empty file added .gitignore
Empty file.
6 changes: 6 additions & 0 deletions docs/plonk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# PLONK
Ref: [https://vitalik.ca/general/2019/09/22/plonk.html](https://vitalik.ca/general/2019/09/22/plonk.html)

## TLDR;
- PLONK still requires a trusted setup
-
3 changes: 3 additions & 0 deletions terms/polynomial-commitment/000_polynomial_commitment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Polynomial commitment

## [Kate commitment](100_kate_commitment.md)
1 change: 1 addition & 0 deletions terms/polynomial-commitment/100_kate_commitment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Kate commitment
1 change: 1 addition & 0 deletions terms/trusted_setup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Trusted setup
Loading