ci: Use workflow_run instead of workflow_dispatch

This commit is contained in:
Antonin Stefanutti 2023-02-13 18:55:26 +01:00 committed by Antonin Stefanutti
parent e7d0041b2a
commit 12031f0381
2 changed files with 5 additions and 12 deletions

View File

@ -17,7 +17,11 @@ on:
- '**.adoc'
- '**.md'
- 'LICENSE'
workflow_dispatch:
workflow_run:
workflows:
- Update Snapshots
types:
- completed
schedule:
- cron: '0 12 * * *'

View File

@ -21,14 +21,3 @@ jobs:
git add .
git commit -m "test: update snapshot PDFs"
git push
- name: Trigger CI Workflow
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'ci.yml',
ref: context.ref,
})