wesslen / bayesian-beagle

Bayesian beagle: Quarto blog of weekly LLM-generated summaries of Arxiv preprints
https://bayesian-beagle.netlify.app/
MIT License
9 stars 0 forks source link

Add --force-generate-all flag; include it as a GH action #10

Closed wesslen closed 9 months ago

wesslen commented 9 months ago

As a GH action:

on:
  workflow_dispatch:
    inputs:
      force_generate_all:
        description: 'Force generate all posts'
        required: false
        type: boolean
        default: false

      - name: Run script
        run: python generate_posts.py --force_generate_all ${{ github.event.inputs.force_generate_all }}
wesslen commented 9 months ago