Skip to content

Commit

Permalink
fix(all-workflows): adjust triggering for push
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusSkytte authored Dec 22, 2023
1 parent 9e28a38 commit f82a0b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/all-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:

# We call the reusable workflow that triggers all AEF-DDF workflows
run-all-AEF-DFF-workflows:
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
if: github.event_name != 'push' || (github.event_name == 'push' && github.base_ref != "")
name: ⚙️ Run all AEF-DDF workflows
uses: ssi-dk/AEF-DDF/.github/workflows/workflow-dispatcher.yaml@workflows
with:
Expand Down

0 comments on commit f82a0b3

Please sign in to comment.