40 lines
1.4 KiB
YAML
40 lines
1.4 KiB
YAML
name: "time-to-k8s benchmark"
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [released]
|
|
env:
|
|
GOPROXY: https://proxy.golang.org
|
|
GO_VERSION: '1.18.3'
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
benchmark:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5
|
|
- name: Checkout submodules
|
|
run: git submodule update --init
|
|
- uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a
|
|
with:
|
|
go-version: ${{env.GO_VERSION}}
|
|
- name: time-to-k8s Benchmark
|
|
id: timeToK8sBenchmark
|
|
run: |
|
|
./hack/benchmark/time-to-k8s/time-to-k8s.sh
|
|
echo "::set-output name=version::$(minikube version --short)"
|
|
- name: Create PR
|
|
uses: peter-evans/create-pull-request@923ad837f191474af6b1721408744feb989a4c27
|
|
with:
|
|
token: ${{ secrets.MINIKUBE_BOT_PAT }}
|
|
commit-message: add time-to-k8s benchmark for ${{ steps.timeToK8sBenchmark.outputs.version }}
|
|
committer: minikube-bot <minikube-bot@google.com>
|
|
author: minikube-bot <minikube-bot@google.com>
|
|
branch: addTimeToK8s${{ steps.timeToK8sBenchmark.outputs.version }}
|
|
push-to-fork: minikube-bot/minikube
|
|
base: master
|
|
delete-branch: true
|
|
title: Add time-to-k8s benchmark for ${{ steps.timeToK8sBenchmark.outputs.version }}
|
|
body: Updating time-to-k8s benchmark as part of the release process
|