Skip to content

Update notice

Update notice #16

Workflow file for this run

name: on-push
run-name: on push to main
on:
push:
branches:
- main
# run if user manually requests it
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
update-citations:
# skip first run because nothing enabled or setup yet
if: github.run_number != 1
uses: ./.github/workflows/update-citations.yaml

Check failure on line 20 in .github/workflows/on-push.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/on-push.yml

Invalid workflow file

error parsing called workflow ".github/workflows/on-push.yml" -> "./.github/workflows/update-citations.yaml" (source branch with sha:ae30dde9e3e6df04ae94f2a1b7a00b46b84fac11) : No event triggers defined in `on`
build-site:
needs: update-citations
uses: ./.github/workflows/build-site.yaml