Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX Don't fail merge-ups if we can't dispatch CI #27

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -415,36 +415,42 @@ runs:

- name: Trigger CI 01
if: ${{ steps.git-merge-up.outputs.trigger_ci_branch_01 != '' }}
continue-on-error: true
uses: silverstripe/gha-trigger-ci@v1
with:
branch: ${{ steps.git-merge-up.outputs.trigger_ci_branch_01 }}

- name: Trigger CI 02
if: ${{ steps.git-merge-up.outputs.trigger_ci_branch_02 != '' }}
continue-on-error: true
uses: silverstripe/gha-trigger-ci@v1
with:
branch: ${{ steps.git-merge-up.outputs.trigger_ci_branch_02 }}

- name: Trigger CI 03
if: ${{ steps.git-merge-up.outputs.trigger_ci_branch_03 != '' }}
continue-on-error: true
uses: silverstripe/gha-trigger-ci@v1
with:
branch: ${{ steps.git-merge-up.outputs.trigger_ci_branch_03 }}

- name: Trigger CI 04
if: ${{ steps.git-merge-up.outputs.trigger_ci_branch_04 != '' }}
continue-on-error: true
uses: silverstripe/gha-trigger-ci@v1
with:
branch: ${{ steps.git-merge-up.outputs.trigger_ci_branch_04 }}

- name: Trigger CI 05
if: ${{ steps.git-merge-up.outputs.trigger_ci_branch_05 != '' }}
continue-on-error: true
uses: silverstripe/gha-trigger-ci@v1
with:
branch: ${{ steps.git-merge-up.outputs.trigger_ci_branch_05 }}

- name: Trigger CI 06
if: ${{ steps.git-merge-up.outputs.trigger_ci_branch_06 != '' }}
continue-on-error: true
uses: silverstripe/gha-trigger-ci@v1
with:
branch: ${{ steps.git-merge-up.outputs.trigger_ci_branch_06 }}
Expand Down