55 lines
1.9 KiB
YAML
55 lines
1.9 KiB
YAML
name: "update-leaderboard"
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags-ignore:
|
|
- 'v*-beta.*'
|
|
env:
|
|
GOPROXY: https://proxy.golang.org
|
|
GO_VERSION: '1.20.2'
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update-leaderboard:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f
|
|
- uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9
|
|
with:
|
|
go-version: ${{env.GO_VERSION}}
|
|
cache-dependency-path: ./go.sum
|
|
- name: Update Leaderboard
|
|
id: leaderboard
|
|
run: |
|
|
make update-leaderboard
|
|
c=$(git status --porcelain)
|
|
c="${c//$'\n'/'%0A'}"
|
|
c="${c//$'\r'/'%0D'}"
|
|
# 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
|
|
echo "changes<<EOF" >> $GITHUB_OUTPUT
|
|
echo "$c" >> $GITHUB_OUTPUT
|
|
echo "EOF" >> $GITHUB_OUTPUT
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.MINIKUBE_BOT_PAT }}
|
|
- name: Create PR
|
|
if: ${{ steps.leaderboard.outputs.changes != '' }}
|
|
uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54
|
|
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 }}
|
|
```
|