zerocracy / pages-action

GitHub Action that generates HTML report from a Factbase
MIT License
5 stars 0 forks source link

let github_token be the option of the plugin #134

Open yegor256 opened 1 month ago

yegor256 commented 1 month ago

Now, we have to do this:

- uses: zerocracy/pages-action@0.0.35
  with:
    factbase: foo.fb
    verbose: true
    output: my-directory
    columns: who,when,repository
    hidden: _id,_time
    options: |
      github_token=${{ secrets.GITHUB_TOKEN }}

Let's make it possible to do this:

- uses: zerocracy/pages-action@0.0.35
  with:
    factbase: foo.fb
    verbose: true
    output: my-directory
    columns: who,when,repository
    hidden: _id,_time
    github_token: ${{ secrets.GITHUB_TOKEN }}