mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2024-11-06 06:17:02 +00:00
e5320e1972
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [pipelinecomponents/yamllint](https://gitlab.com/pipeline-components/yamllint) | minor | `0.31.3` -> `0.32.1` | --- ### Release Notes <details> <summary>pipeline-components/yamllint (pipelinecomponents/yamllint)</summary> ### [`v0.32.1`](https://gitlab.com/pipeline-components/yamllint/compare/v0.32.0...v0.32.1) [Compare Source](https://gitlab.com/pipeline-components/yamllint/compare/v0.32.0...v0.32.1) ### [`v0.32.0`](https://gitlab.com/pipeline-components/yamllint/compare/v0.31.3...v0.32.0) [Compare Source](https://gitlab.com/pipeline-components/yamllint/compare/v0.31.3...v0.32.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - "before 4am" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: woodpecker-bot <woodpecker-bot@obermui.de> Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/389 Co-authored-by: Dependency bot <renovate-bot@noreply.codeberg.org> Co-committed-by: Dependency bot <renovate-bot@noreply.codeberg.org>
30 lines
705 B
YAML
30 lines
705 B
YAML
when:
|
|
- event: pull_request
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
lint:
|
|
depends_on: []
|
|
image: golangci/golangci-lint:v1.61.0
|
|
commands:
|
|
- go version
|
|
- go install mvdan.cc/gofumpt@latest
|
|
- "[ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }"
|
|
- golangci-lint run --timeout 5m --build-tags integration
|
|
|
|
editor-config:
|
|
depends_on: []
|
|
image: mstruebing/editorconfig-checker:v3.0.3
|
|
|
|
yamllint:
|
|
image: pipelinecomponents/yamllint:0.32.1
|
|
depends_on: []
|
|
commands:
|
|
- yamllint .
|
|
|
|
prettier:
|
|
image: docker.io/woodpeckerci/plugin-prettier:0.2.0
|
|
depends_on: []
|
|
settings:
|
|
version: 3.2.5
|