fix: make test case logs collapsed by default #160
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Estimate-review | |
on: pull_request_target | |
permissions: | |
pull-requests: write | |
jobs: | |
estimate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
repository: 'konflux-ci/qe-tools' | |
- name: Setup Go environment | |
uses: actions/setup-go@v5 | |
- name: Build qe-tools | |
run: make build | |
- name: Run estimate time needed for PR review | |
run: | | |
./qe-tools estimate-review \ | |
--owner ${{ github.repository_owner }} \ | |
--repository ${{ github.event.repository.name }} \ | |
--number ${{ github.event.pull_request.number }} \ | |
--config ${{ env.CONFIG_PATH }} \ | |
--token ${{ github.token }} \ | |
--add-label \ | |
--human | |
env: | |
CONFIG_PATH: 'config/estimate/config.yaml' |