Skip to content

Commit

Permalink
fsdefv
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Nov 18, 2023
1 parent 7c6d4c4 commit 9c00c8b
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/debugging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,26 @@ jobs:

steps:
- uses: mdecoleman/[email protected]
id: vars
id: branchname
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- 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'

- 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'

- 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'

- 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'

- run: echo ${{ steps.vars.outputs.branch }}
- name: Test ${{ github.ref }}
continue-on-error: true
Expand Down

0 comments on commit 9c00c8b

Please sign in to comment.