A tool to order EIP and ERC pull requests by oldest author interaction and render a pretty HTML output.
EIP-Board requires an authentication token. A read-only public personal access token is sufficient.
# Choose the repository to read from (usually ethereum/ERCs or ethereum/EIPs).
export GITHUB_REPOSITORY=ethereum/ERCs
# Replace the three dots with your access token.
export GITHUB_TOKEN=...
# Render the queue into a file.
cargo run > ./queue.html
EIP-Board can be used as a GitHub Action by adding the following to a file in
.github/workflows/
:
# ...
jobs:
build:
# ...
steps:
- name: EIP Board
uses: gaudren/eip-board@master
with:
path: ./_site/eip-board.html
This snippet will generate a file at ./_site/eip-board.html
, which can then
be uploaded to GitHub Pages (or wherever else.)