run-teamcity-tests/action.yml

21 lines
504 B
YAML
Raw Normal View History

2024-10-23 22:09:19 +10:00
name: Run Teamcity tests
description: Run teamcity tests
inputs:
teamcity-token:
description: 'Teamcity token'
required: true
branch:
description: 'Branch'
2024-10-23 22:09:19 +10:00
required: true
web:
description: 'Run web'
2024-10-23 22:09:19 +10:00
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 }}