Skip to content

Commit

Permalink
ci: Added workflow inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
CSantosM committed Feb 27, 2023
1 parent 72cac3b commit fd2e529
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/openvidu-components-angular-E2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ on:
branches:
- master
workflow_dispatch:
inputs:
commit_sha:
description: 'Commit SHA'
required: false
default: ''

jobs:

Expand All @@ -18,6 +23,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.commit_sha || github.sha }}
- uses: actions/setup-node@v3
with:
node-version: '16'
Expand Down

0 comments on commit fd2e529

Please sign in to comment.