mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-01-18 16:47:54 +00:00
7fad16b5d6
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/woodpeckerci/plugin-prettier](https://codeberg.org/woodpecker-plugins/prettier) ([source](https://codeberg.org/woodpecker-plugins/prettier.git)) | major | `0.2.0` -> `1.1.0` | --- ### Release Notes <details> <summary>woodpecker-plugins/prettier (docker.io/woodpeckerci/plugin-prettier)</summary> ### [`v1.1.0`](https://codeberg.org/woodpecker-plugins/prettier/compare/1.0.0...1.1.0) [Compare Source](https://codeberg.org/woodpecker-plugins/prettier/compare/1.0.0...1.1.0) ### [`v1.0.0`](https://codeberg.org/woodpecker-plugins/prettier/blob/HEAD/CHANGELOG.md#100---2024-11-20) [Compare Source](https://codeberg.org/woodpecker-plugins/prettier/compare/0.2.0...1.0.0) ##### ❤️ Thanks to all contributors! ❤️ [@​qwerty287](https://github.com/qwerty287), [@​woodpecker-bot](https://github.com/woodpecker-bot) ##### 💥 Breaking changes - Update node.js to v22 and remove ppc64le and arm images \[[#​2](https://codeberg.org/woodpecker-plugins/prettier/pulls/2)] ##### 📦️ Dependency - chore(deps): update woodpeckerci/plugin-ready-release-go docker tag to v2.1.1 \[[#​5](https://codeberg.org/woodpecker-plugins/prettier/pulls/5)] ##### Misc - Add CODEOWNERS \[[#​3](https://codeberg.org/woodpecker-plugins/prettier/pulls/3)] </details> --- ### Configuration 📅 **Schedule**: Branch creation - "* * * * 0,6" (UTC), Automerge - "* 0-3 * * *" (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzOS45MC40IiwidXBkYXRlZEluVmVyIjoiMzkuOTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: woodpecker-bot <woodpecker-bot@obermui.de> Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/417 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.63.4
|
|
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.33.0
|
|
depends_on: []
|
|
commands:
|
|
- yamllint .
|
|
|
|
prettier:
|
|
image: docker.io/woodpeckerci/plugin-prettier:1.1.0
|
|
depends_on: []
|
|
settings:
|
|
version: 3.2.5
|