We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72cac3b commit fd2e529Copy full SHA for fd2e529
1 file changed
.github/workflows/openvidu-components-angular-E2E.yml
@@ -10,6 +10,11 @@ on:
10
branches:
11
- master
12
workflow_dispatch:
13
+ inputs:
14
+ commit_sha:
15
+ description: 'Commit SHA'
16
+ required: false
17
+ default: ''
18
19
jobs:
20
@@ -18,6 +23,8 @@ jobs:
23
runs-on: ubuntu-latest
24
steps:
25
- uses: actions/checkout@v3
26
+ with:
27
+ ref: ${{ github.event.inputs.commit_sha || github.sha }}
21
28
- uses: actions/setup-node@v3
22
29
with:
30
node-version: '16'
0 commit comments