21 lines
504 B
YAML
21 lines
504 B
YAML
name: Run Teamcity tests
|
|
description: Run teamcity tests
|
|
|
|
inputs:
|
|
teamcity-token:
|
|
description: 'Teamcity token'
|
|
required: true
|
|
branch:
|
|
description: 'Branch'
|
|
required: true
|
|
web:
|
|
description: 'Run web'
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Start Teamcity tests
|
|
shell: powershell
|
|
run: ${{ gitea.action_path }}/Handle-PullRequestComment.ps1 -teamCityToken ${{ inputs.teamcity-token }} -branch ${{ inputs.branch }} -web ${{ inputs.web }}
|