51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
name: "update-leaderboard"
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags-ignore:
|
|
- 'v*-beta.*'
|
|
env:
|
|
GOPROXY: https://proxy.golang.org
|
|
GO_VERSION: '1.19.1'
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update-leaderboard:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
|
- uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
|
|
with:
|
|
go-version: ${{env.GO_VERSION}}
|
|
- name: Update Leaderboard
|
|
id: leaderboard
|
|
run: |
|
|
make update-leaderboard
|
|
c=$(git status --porcelain)
|
|
c="${c//$'\n'/'%0A'}"
|
|
c="${c//$'\r'/'%0D'}"
|
|
echo "::set-output name=changes::$c"
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.MINIKUBE_BOT_PAT }}
|
|
- name: Create PR
|
|
if: ${{ steps.leaderboard.outputs.changes != '' }}
|
|
uses: peter-evans/create-pull-request@671dc9c9e0c2d73f07fa45a3eb0220e1622f0c5f
|
|
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.
|
|
|
|
```
|
|
${{ steps.leaderboard.outputs.changes }}
|
|
```
|