minikube/.github/workflows/leaderboard.yml

50 lines
1.5 KiB
YAML
Raw Normal View History

name: "update-leaderboard"
on:
workflow_dispatch:
push:
tags-ignore:
- 'v*-beta.*'
release:
types: [published]
2021-07-15 19:14:11 +00:00
env:
2021-09-20 09:02:09 +00:00
GO_VERSION: '1.17.1'
jobs:
update-leaderboard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{env.GO_VERSION}}
stable: true
- 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@v3
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 }}
```