Skip to content

Commit

Permalink
Merge ee3209a into efe960e
Browse files Browse the repository at this point in the history
  • Loading branch information
alegrey91 committed Oct 12, 2023
2 parents efe960e + ee3209a commit b4c41a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/sanity-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:

workflow_call:
inputs:
GH_RUNNER:
type: string
default: "ubuntu-latest"
SYSTEM_TESTS_BRANCH:
type: string
default: "master"
Expand Down Expand Up @@ -62,7 +65,7 @@ jobs:
matrix:
TEST: ${{ fromJson(needs.wf-preparation.outputs.TEST_NAMES) }}
needs: wf-preparation
runs-on: ubuntu-latest
runs-on: ${{ inputs.GH_RUNNER }}
steps:

- name: Checkout systests repo
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ Here's the list of reusable workflows available from this repository:

| **Name** | **Variables** | **Description** |
| ------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
| `sanity-check.yaml` | - `SYSTEM_TESTS_BRANCH`: define alternative branch to clone for [system-tests](github.com/armosec/system-tests) repository. Default: `master`<br />- `BINARY_TESTS`: specify which tests are going to be executed by the workflow. | This workflow allow you to run **system-tests** in the **production** environment |
| `sanity-check.yaml` | - GH_RUNNER: define the runner to use on the workflow. Default: `ubuntu-latest`</br>- `SYSTEM_TESTS_BRANCH`: define alternative branch to clone for [system-tests](github.com/armosec/system-tests) repository. Default: `master`</br>- `BINARY_TESTS`: specify which tests are going to be executed by the workflow. | This workflow allow you to run **system-tests** in the **production** environment |

0 comments on commit b4c41a1

Please sign in to comment.