Quarto Check for Tools, Packages and Techniques Submission from Form #302
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Quarto Check for Tools, Packages and Techniques Submission from Form | |
| on: | |
| workflow_run: | |
| workflows: ["Generate Quarto page from Issue Form"] # name of your PR-creating workflow | |
| types: | |
| - completed | |
| jobs: | |
| check: | |
| if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.workflow_run.head_branch }} | |
| - uses: quarto-dev/quarto-actions/setup@v2 | |
| - name: Render (test build) | |
| run: quarto render |