Skip to content

Commit

Permalink
feat(SPV-1271): initialise regression test workflow (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
dorzepowski authored Dec 7, 2024
1 parent 2591557 commit b41031f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/trigger-regression-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Regression Tests"
run-name: "Regression Tests for ${{ github.head_ref || github.ref }} | ID: ${{ github.run_id }}-${{ github.run_attempt }}"

on:
workflow_dispatch:
inputs:
keep_instances:
description: 'When should it keep instances created during tests?'
required: true
default: 'never'
type: choice
options:
- 'always'
- 'failure'
- 'never'
pull_request_target:
types: [labeled]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: print
run: echo "Hello, World!"

0 comments on commit b41031f

Please sign in to comment.