mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
* ci migrated * remove travis ci * typo fix * delete size labeler * fix test issues * test ci added * rename build workflow
40 lines
No EOL
870 B
Text
40 lines
No EOL
870 B
Text
name: gosum
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'master'
|
|
paths:
|
|
- '.github/workflows/gosum.yml'
|
|
- 'go.mod'
|
|
- 'go.sum'
|
|
|
|
jobs:
|
|
fix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.14
|
|
-
|
|
name: Tidy
|
|
run: |
|
|
rm -f go.sum
|
|
go mod tidy
|
|
-
|
|
name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v2
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: "fix: go mod tidy"
|
|
title: "fix: go mod tidy"
|
|
body: |
|
|
Current `go.mod` and `go.sum` don't match the source code.
|
|
branch: go-mod-tidy
|
|
branch-suffix: timestamp
|
|
labels: automerge |