We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24bc817 commit b697e64Copy full SHA for b697e64
1 file changed
.github/workflows/cicd.yml
@@ -11,6 +11,11 @@ name: CICD
11
description: "SR Linux version"
12
required: true
13
default: "23.3.2"
14
+ start-tmate:
15
+ description: "start tmate before running tests"
16
+ type: boolean
17
+ required: false
18
+ default: false
19
pull_request:
20
push:
21
tags:
@@ -59,6 +64,10 @@ jobs:
59
64
# username: ${{ github.actor }}
60
65
# password: ${{ secrets.GITHUB_TOKEN }}
61
66
67
+ - name: start tmate session
68
+ uses: mxschmitt/action-tmate@v3
69
+ if: ${{ inputs.start-tmate }}
70
+
62
71
- name: Test
63
72
run: ./run.sh ci-test
73
0 commit comments