forked from konflux-ci/e2e-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 928 Bytes
/
estimate-review.yaml
File metadata and controls
35 lines (28 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Estimate-review
on: pull_request_target
env:
QE_TOOLS_VERSION: v0.1.0
permissions:
pull-requests: write
jobs:
estimate:
runs-on: ubuntu-latest
steps:
- name: Download qe-tools release
run: gh release download $QE_TOOLS_VERSION -R konflux-ci/qe-tools
env:
GH_TOKEN: ${{ github.token }}
- name: Unpack tarball
run: tar -xzvf qe-tools-$QE_TOOLS_VERSION-linux-amd64.tar.gz
- name: Run qe-tools PR review time estimation
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'