Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/solutionValidation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Solution Package Validations
on:
pull_request:
branches:
- master
paths:
- 'Solutions/**'
# Allows to run workflow manually from the Actions tab
workflow_dispatch:
jobs:
Run-SolutionPackage-Validation:
name: Solution Package UI Testing - Testim.io
runs-on: ubuntu-latest
steps:
- name: Chekout pull request braanch
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
persist-credentials: false
fetch-depth: 0
- name: Get Modified Files
run: |
git diff --name-only origin/master ${{ github.event.pull_request.head.sha }}/../../../Solutions/ > changed_files.txt
echo "changed_files=$(cat changed_files.txt)" >> $GITHUB_ENV
cat changed_files.txt
2 changes: 1 addition & 1 deletion Solutions/CiscoUmbrella/Package/mainTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"workbook1-name": {
"type": "string",
"defaultValue": "Cisco Umbrella",
"defaultValue": "Cisco imbrella",
"minLength": 1,
"metadata": {
"description": "Name for the workbook"
Expand Down
Loading