2021-07-07 17:47:44 +00:00
name : "update-leaderboard"
on :
2021-07-08 18:58:04 +00:00
workflow_dispatch :
2021-07-07 17:47:44 +00:00
push :
tags-ignore :
- 'v*-beta.*'
2021-07-15 19:14:11 +00:00
env :
2022-06-01 23:39:55 +00:00
GOPROXY : https://proxy.golang.org
2023-02-20 09:02:38 +00:00
GO_VERSION : '1.20.1'
2022-03-12 00:25:30 +00:00
permissions :
contents : read
2021-07-07 17:47:44 +00:00
jobs :
update-leaderboard :
2021-09-28 03:01:27 +00:00
runs-on : ubuntu-20.04
2021-07-07 17:47:44 +00:00
steps :
2023-01-09 18:12:09 +00:00
- uses : actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
2022-12-19 18:05:30 +00:00
- uses : actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568
2021-07-07 17:47:44 +00:00
with :
go-version : ${{env.GO_VERSION}}
2022-10-29 15:22:24 +00:00
cache : true
cache-dependency-path : ./go.sum
2021-07-07 17:47:44 +00:00
- name : Update Leaderboard
id : leaderboard
run : |
make update-leaderboard
2021-08-23 20:41:53 +00:00
c=$(git status --porcelain)
c="${c//$'\n'/'%0A'}"
c="${c//$'\r'/'%0D'}"
2022-11-07 17:53:20 +00:00
# The following is to support multiline with GITHUB_OUTPUT, see https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings
2022-11-04 23:20:08 +00:00
echo "changes<<EOF" >> $GITHUB_OUTPUT
echo "$c" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
2021-07-07 22:51:09 +00:00
env :
GITHUB_TOKEN : ${{ secrets.MINIKUBE_BOT_PAT }}
2021-07-07 17:47:44 +00:00
- name : Create PR
if : ${{ steps.leaderboard.outputs.changes != '' }}
2022-11-28 18:06:24 +00:00
uses : peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04
2021-07-07 17:47:44 +00:00
with :
token : ${{ secrets.MINIKUBE_BOT_PAT }}
commit-message : Update leaderboard
committer : minikube-bot <minikube-bot@google.com>
author : minikube-bot <minikube-bot@google.com>
branch : leaderboard
push-to-fork : minikube-bot/minikube
base : master
delete-branch : true
title : 'Update leaderboard'
body : |
Committing changes resulting from `make update-leaderboard`.
This PR is auto-generated by the [update-leaderboard](https://github.com/kubernetes/minikube/blob/master/.github/workflows/leaderboard.yml) CI workflow.
2021-08-23 20:41:53 +00:00
2021-07-07 17:47:44 +00:00
```
${{ steps.leaderboard.outputs.changes }}
2021-07-08 18:58:04 +00:00
```