Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 1.11 KB

README.md

File metadata and controls

47 lines (35 loc) · 1.11 KB

EIP-Board

A tool to order EIP and ERC pull requests by oldest author interaction and render a pretty HTML output.

Usage

Command Line

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

GitHub Action

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.)