mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
6cb93d66df
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
name: Go mod tidy check
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
- "release/**"
|
|
paths:
|
|
- "**.go"
|
|
- "**/go.mod"
|
|
- "**/go.sum"
|
|
- ".github/workflows/test-tidy.yml"
|
|
pull_request:
|
|
paths:
|
|
- "**.go"
|
|
- "**/go.mod"
|
|
- "**/go.sum"
|
|
- ".github/workflows/test-tidy.yml"
|
|
|
|
jobs:
|
|
gotidycheck:
|
|
name: Go mod tidy check
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
with:
|
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
|
# No token available for forks, so we can't push changes
|
|
token: ${{ !github.event.pull_request.head.repo.fork && secrets.CI_COMMIT_PUSH_PR || '' }}
|
|
|
|
- name: Setup Go environment
|
|
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
|
with:
|
|
go-version: "1.20.1"
|
|
|
|
- name: Go tidy check
|
|
id: tidycheck
|
|
uses: katexochen/go-tidy-check@2f5d75dbd503b372466fa9d8bc85710558b953c7 # v2.0.0
|
|
with:
|
|
submodules: "true"
|
|
|
|
# The following steps are only executed if the previous tidy check failed
|
|
# and the action runs on an renovat branche. In this case, we tidy all
|
|
# modules again and commit the changes, so the user doesn't need to do it.
|
|
|
|
- name: Push changes
|
|
if: |
|
|
failure() &&
|
|
(steps.tidycheck.conclusion == 'failure') &&
|
|
startsWith(github.head_ref, 'renovate/') &&
|
|
!github.event.pull_request.head.repo.fork
|
|
shell: bash
|
|
run: |
|
|
git config --global user.name "edgelessci"
|
|
git config --global user.email "edgelessci@users.noreply.github.com"
|
|
git commit -am "deps: tidy all modules"
|
|
git push
|