historical-update #155
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: historical-update | |
on: | |
schedule: | |
- cron: '10 0 * * 1' | |
workflow_dispatch: | |
jobs: | |
badge-update: | |
runs-on: ubuntu-latest | |
container: quay.io/kubevirtci/bootstrap:v20210715-d0c2b78 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.KUBEVIRT_BOT_TOKEN }} | |
- name: batch update for kubevirt/kubevirt | |
env: | |
GITHUB_TOKEN: ${{ secrets.KUBEVIRT_BOT_TOKEN }} | |
SOURCE: kubevirt/kubevirt | |
run: | | |
echo -n $GITHUB_TOKEN > $(pwd)/token | |
bazelisk run //cmd/batch -- \ | |
--gh-token $(pwd)/token \ | |
--path $(pwd)/output \ | |
--mode fetch \ | |
--target-metric retests-to-merge \ | |
--log-level debug | |
bazelisk run //cmd/batch -- \ | |
--gh-token $(pwd)/token \ | |
--path $(pwd)/output \ | |
--mode plot \ | |
--target-metric retests-to-merge \ | |
--log-level debug | |
bazelisk run //cmd/batch -- \ | |
--gh-token $(pwd)/token \ | |
--path $(pwd)/output \ | |
--mode fetch \ | |
--target-metric time-to-merge \ | |
--log-level debug | |
bazelisk run //cmd/batch -- \ | |
--gh-token $(pwd)/token \ | |
--path $(pwd)/output \ | |
--mode plot \ | |
--target-metric time-to-merge \ | |
--log-level debug | |
bazelisk run //cmd/batch -- \ | |
--gh-token $(pwd)/token \ | |
--path $(pwd)/output \ | |
--mode fetch \ | |
--target-metric merge-queue-length \ | |
--log-level debug | |
bazelisk run //cmd/batch -- \ | |
--gh-token $(pwd)/token \ | |
--path $(pwd)/output \ | |
--mode plot \ | |
--target-metric merge-queue-length \ | |
--log-level debug | |
bazelisk run //cmd/batch -- \ | |
--gh-token $(pwd)/token \ | |
--path $(pwd)/output \ | |
--mode fetch \ | |
--target-metric merged-prs \ | |
--log-level debug | |
bazelisk run //cmd/batch -- \ | |
--gh-token $(pwd)/token \ | |
--path $(pwd)/output \ | |
--mode plot \ | |
--target-metric merged-prs \ | |
--log-level debug | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v7 | |
with: | |
author_name: KubeVirt Bot | |
author_email: kubevirtbot@redhat.com | |
message: 'Historical data updated' | |
add: 'output/*' |