diff --git a/.github/workflows/debugging.yml b/.github/workflows/debugging.yml index b6118145ceb..c2e056a03cc 100644 --- a/.github/workflows/debugging.yml +++ b/.github/workflows/debugging.yml @@ -19,19 +19,33 @@ jobs: - name: Test contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true if: contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true - run: echo 'contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true' + continue-on-error: true + run: echo '"/nextcloud/vue-", "/webrtc-adapter-"' - name: Test contains(fromJSON('["/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true - if: contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true - run: echo 'contains(fromJSON('["/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true' + if: contains(fromJSON('["/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true + continue-on-error: true + run: echo '"/webrtc-adapter-"' - name: Test contains(fromJSON('["/nextcloud/vue-"'), steps.branchname.outputs.branch) != true - if: contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true - run: echo 'contains(fromJSON('["/nextcloud/vue-"'), steps.branchname.outputs.branch) != true' + if: contains(fromJSON('["/nextcloud/vue-"'), steps.branchname.outputs.branch) != true + continue-on-error: true + run: echo '"/nextcloud/vue-"' - name: Test contains('/nextcloud/vue-', steps.branchname.outputs.branch) != true - if: contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), steps.branchname.outputs.branch) != true - run: echo 'contains('/nextcloud/vue-', steps.branchname.outputs.branch) != true' + if: contains('/nextcloud/vue-', steps.branchname.outputs.branch) != true + continue-on-error: true + run: echo '/nextcloud/vue-' + + - name: Test contains('/webrtc-adapter-', steps.branchname.outputs.branch) != true + if: contains('/webrtc-adapter-', steps.branchname.outputs.branch) != true + continue-on-error: true + run: echo '/webrtc-adapter-' + + - name: Test contains('/webrtc-adapter-', steps.branchname.outputs.branch) != contains('/nextcloud/vue-', steps.branchname.outputs.branch) + if: contains('/webrtc-adapter-', steps.branchname.outputs.branch) != contains('/nextcloud/vue-', steps.branchname.outputs.branch) + continue-on-error: true + run: echo '/nextcloud/vue- != /webrtc-adapter-' - run: echo ${{ steps.vars.outputs.branch }} - name: Test ${{ github.ref }}