Skip to content

Commit

Permalink
use correct workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderDevisscher committed Aug 23, 2024
1 parent a27353e commit e9205d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Build pkgdown site.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: Build pkgdown site

on:
workflow_run:
workflows: ["Increment version"]
workflow_run: # Trigger the workflow based on the run of another workflow
workflows: ["increment_version"] # yaml filename of dependent workflows (without .yaml)
types:
- completed
workflow_dispatch:
- completed # Trigger on completion
workflow_dispatch: # Trigger manually

concurrency:
group: ${{ github.ref }}-${{ github.workflow }} # Use the branch reference as the concurrency group
Expand Down

0 comments on commit e9205d4

Please sign in to comment.