generated from Templates/Baseline
renovate-bot
13623e035c
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/mstruebing/editorconfig-checker](https://github.com/editorconfig-checker/editorconfig-checker) | minor | `v3.0.3` -> `v3.1.2` | --- ### Release Notes <details> <summary>editorconfig-checker/editorconfig-checker (docker.io/mstruebing/editorconfig-checker)</summary> ### [`v3.1.2`](https://github.com/editorconfig-checker/editorconfig-checker/releases/tag/v3.1.2) [Compare Source](https://github.com/editorconfig-checker/editorconfig-checker/compare/v3.1.1...v3.1.2) ##### Bug Fixes - provide both .tar.gz as well as .zip archives ([#​416](https://github.com/editorconfig-checker/editorconfig-checker/issues/416)) ([00e9890](00e9890847
)), closes [#​415](https://github.com/editorconfig-checker/editorconfig-checker/issues/415) ### [`v3.1.1`](https://github.com/editorconfig-checker/editorconfig-checker/releases/tag/v3.1.1) [Compare Source](https://github.com/editorconfig-checker/editorconfig-checker/compare/v3.1.0...v3.1.1) ##### Bug Fixes - dockerfile expected binary at /, not /usr/bin/ [#​410](https://github.com/editorconfig-checker/editorconfig-checker/issues/410) ([#​411](https://github.com/editorconfig-checker/editorconfig-checker/issues/411)) ([2c82197](2c821979c0
)) ### [`v3.1.0`](https://github.com/editorconfig-checker/editorconfig-checker/releases/tag/v3.1.0) [Compare Source](https://github.com/editorconfig-checker/editorconfig-checker/compare/v3.0.3...v3.1.0) ##### Features - add zip version when compressing all binaries ([#​321](https://github.com/editorconfig-checker/editorconfig-checker/issues/321)) ([#​362](https://github.com/editorconfig-checker/editorconfig-checker/issues/362)) ([f1bb625](f1bb625f25
)) - consolidate adjacent error messages ([#​360](https://github.com/editorconfig-checker/editorconfig-checker/issues/360)) ([cf4ae1c](cf4ae1cced
)) - editorconfig-checker-disable-next-line ([#​363](https://github.com/editorconfig-checker/editorconfig-checker/issues/363)) ([6116ec6](6116ec6685
)) - provide Codeclimate compatible report fromat ([#​367](https://github.com/editorconfig-checker/editorconfig-checker/issues/367)) ([282c315](282c315bd1
)) - support `.editorconfig-checker.json` config ([#​375](https://github.com/editorconfig-checker/editorconfig-checker/issues/375)) ([cb0039c](cb0039cfe6
)) ##### Bug Fixes - actually use the correct end marker ([#​405](https://github.com/editorconfig-checker/editorconfig-checker/issues/405)) ([3c03499](3c034994cb
)) - add `.ecrc` deprecation warning ([#​389](https://github.com/editorconfig-checker/editorconfig-checker/issues/389)) ([d33b81c](d33b81cc71
)) - this release-please marker ([#​403](https://github.com/editorconfig-checker/editorconfig-checker/issues/403)) ([617c6d4](617c6d44b5
)) - typo in config, `SpacesAftertabs` => `SpacesAfterTabs` ([#​386](https://github.com/editorconfig-checker/editorconfig-checker/issues/386)) ([25e3542](25e3542ee4
)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMDUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEwNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==--> Reviewed-on: #22 Reviewed-by: OCram85 <marco.blessing@googlemail.com> Co-authored-by: renovate-bot <renovate@ocram85.com> Co-committed-by: renovate-bot <renovate@ocram85.com>
107 lines
2.8 KiB
YAML
107 lines
2.8 KiB
YAML
when:
|
|
- event: [pull_request, tag, cron]
|
|
- event: push
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
variables:
|
|
- &build_plugin 'woodpeckerci/plugin-docker-buildx:5.1.0'
|
|
# deployment targets
|
|
# TODO: Disabled docker hub target until first release is ready / Rate Limits
|
|
- &publish_repos 'ocram85/plugin-gitea-package,gitea.ocram85.com/plugins/gitea-package'
|
|
#- &publish_repos 'gitea.ocram85.com/plugins/gitea-package'
|
|
# logins for deployment targets
|
|
- publish_logins: &publish_logins
|
|
# Default DockerHub login
|
|
- registry: https://index.docker.io/v1/
|
|
username:
|
|
from_secret: docker_user
|
|
password:
|
|
from_secret: docker_passwd
|
|
# Additional Gitea login
|
|
- registry: https://gitea.ocram85.com
|
|
username:
|
|
from_secret: gitea_user
|
|
password:
|
|
from_secret: gitea_passwd
|
|
|
|
steps:
|
|
lint-dockerfile:
|
|
image: hadolint/hadolint:v2.12.1-beta-alpine
|
|
commands:
|
|
#- cat Dockerfile
|
|
#- hadolint --verbose --ignore DL3003 --ignore DL3018 Dockerfile
|
|
- hadolint --ignore DL3003 --ignore DL3018 Dockerfile
|
|
#when:
|
|
# path: "Dockerfile"
|
|
|
|
lint-markdown:
|
|
image: davidanson/markdownlint-cli2:v0.14.0
|
|
commands:
|
|
- "markdownlint-cli2 *.{md,markdown}"
|
|
when:
|
|
path: "*.{md,markdown}"
|
|
|
|
lint-editorconfig:
|
|
depends_on: []
|
|
image: docker.io/mstruebing/editorconfig-checker:v3.1.2
|
|
when:
|
|
event: pull_request
|
|
|
|
test:
|
|
image: *build_plugin
|
|
settings:
|
|
dry_run: true
|
|
registry: gitea.ocram85.com
|
|
repo: test
|
|
dockerfile: Dockerfile
|
|
platforms: linux/amd64
|
|
auto_tag: true
|
|
build_args:
|
|
- VERSION=${CI_COMMIT_TAG:-PR ${CI_COMMIT_PULL_REQUEST}}
|
|
- TAG=${CI_COMMIT_TAG}
|
|
when:
|
|
event: pull_request
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
publish:
|
|
image: *build_plugin
|
|
settings:
|
|
repo: *publish_repos
|
|
dockerfile: Dockerfile
|
|
platforms: linux/amd64
|
|
auto_tag: true
|
|
logins: *publish_logins
|
|
build_args:
|
|
- VERSION=${CI_COMMIT_TAG:-PR ${CI_COMMIT_PULL_REQUEST}}
|
|
- TAG=${CI_COMMIT_TAG}
|
|
when:
|
|
event: [push, tag, cron]
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
build-next:
|
|
image: *build_plugin
|
|
settings:
|
|
repo: *publish_repos
|
|
dockerfile: Dockerfile
|
|
platforms: linux/amd64
|
|
tag: next
|
|
logins: *publish_logins
|
|
build_args:
|
|
- VERSION=${CI_COMMIT_TAG:-PR ${CI_COMMIT_PULL_REQUEST}}
|
|
- TAG=${CI_COMMIT_TAG}
|
|
when:
|
|
event: [pull_request]
|
|
|
|
gitea-release:
|
|
image: plugins/gitea-release
|
|
settings:
|
|
api_key:
|
|
from_secret: RENOVATE_TOKEN
|
|
base_url: https://gitea.ocram85.com
|
|
title: ${CI_COMMIT_TAG}
|
|
note: "> :bulb: **Note:** See [CHANGELOG.md](src/branch/master/CHANGELOG.md) for recent changes."
|
|
when:
|
|
event: [tag]
|
|
branch: ${CI_REPO_DEFAULT_BRANCH}
|