Cleanup dependabot #6
Workflow file for this run
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: Build LaTeX PDF | |
| on: [pull_request] | |
| jobs: | |
| pdf: | |
| name: Build PDF files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Latex journee visu (2025) | |
| uses: xu-cheng/latex-action@v4.1.0 | |
| with: | |
| root_file: 2025-journee-visu/abstract.tex | |
| - name: Upload journee visu (2025) | |
| uses: actions/upload-artifact@v7 | |
| id: journee-visu-2025 | |
| with: | |
| name: journee-visu-pdf | |
| path: 2025-journee-visu/abstract.pdf | |
| - name: Add comment on PR | |
| uses: thollander/actions-comment-pull-request@v3 | |
| with: | |
| message: ':memo: Journee Visu 2025: [PDF](${{steps.journee-visu-2025.outputs.artifact_url}})' | |
| comment-tag: papers |