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
2022-09-12 09:05:15 +00:00
GO_VERSION : '1.19.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 :
2022-08-22 18:22:45 +00:00
- uses : actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
2022-08-29 18:18:00 +00:00
- uses : actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
2021-07-07 17:47:44 +00:00
with :
go-version : ${{env.GO_VERSION}}
- 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'}"
echo "::set-output name=changes::$c"
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-10-03 18:25:04 +00:00
uses : peter-evans/create-pull-request@671dc9c9e0c2d73f07fa45a3eb0220e1622f0c5f
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
```