Skip to content

Commit

Permalink
freg
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 85cfcbc commit 58857a2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/debugging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,23 @@ jobs:

steps:
- name: Test ${{ github.ref }}
continue-on-error: true
run: echo '${{ github.ref }}'
- name: Test ${{ github.ref_name }}
continue-on-error: true
run: echo '${{ github.ref_name }}'
- name: Test contains('/nextcloud/vue-', github.ref)
continue-on-error: true
run: echo contains('/nextcloud/vue-', github.ref)
- name: Test contains('/webrtc-adapter-', github.ref)
continue-on-error: true
run: echo contains('/webrtc-adapter-', github.ref)
- name: Test contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), github.ref)
continue-on-error: true
run: echo contains(fromJSON('["/nextcloud/vue-", "/webrtc-adapter-"]'), github.ref)

- name: JS
continue-on-error: true
uses: actions/github-script@v5
with:
github-token: ${{secrets.GITHUB_TOKEN}}
Expand Down

0 comments on commit 58857a2

Please sign in to comment.