2024-10-23 22:09:19 +10:00
|
|
|
name: Run Teamcity tests
|
|
|
|
description: Run teamcity tests
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
teamcity-token:
|
|
|
|
description: 'Teamcity token'
|
|
|
|
required: true
|
|
|
|
gitea-token:
|
|
|
|
description: 'Gitea token token'
|
|
|
|
required: true
|
|
|
|
pull-id:
|
|
|
|
description: 'Pull request id'
|
|
|
|
required: true
|
|
|
|
|
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
|
|
|
- name: Start Teamcity tests
|
|
|
|
shell: powershell
|
2024-10-24 10:05:41 +10:00
|
|
|
run: ${{ gitea.action_path }}/Handle-PullRequestComment.ps1 -teamCityToken ${{ inputs.teamcity-token }} -giteaToken ${{ inputs.gitea-token }} -pullId ${{ inputs.pull-id }}
|