mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-21 04:00:40 +00:00
fix required status checks (#3)
This commit is contained in:
parent
8816f37595
commit
c1764ee42b
1
.github/settings.yml
vendored
1
.github/settings.yml
vendored
@ -52,7 +52,6 @@ branches:
|
||||
contexts:
|
||||
- ci/woodpecker/pr/test
|
||||
- ci/woodpecker/pr/release
|
||||
- ci/woodpecker/pr/container
|
||||
enforce_admins: true
|
||||
required_linear_history: true
|
||||
restrictions: null
|
||||
|
20
.woodpecker/docs.yml
Normal file
20
.woodpecker/docs.yml
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
when:
|
||||
- event: [pull_request, tag]
|
||||
- event: [push, manual]
|
||||
branch:
|
||||
- ${CI_REPO_DEFAULT_BRANCH}
|
||||
|
||||
steps:
|
||||
markdownlint:
|
||||
image: quay.io/thegeeklab/markdownlint-cli
|
||||
commands:
|
||||
- markdownlint 'README.md' 'CONTRIBUTING.md'
|
||||
|
||||
spellcheck:
|
||||
image: quay.io/thegeeklab/alpine-tools
|
||||
commands:
|
||||
- spellchecker --files 'README.md' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
|
||||
environment:
|
||||
FORCE_COLOR: "true"
|
||||
NPM_CONFIG_LOGLEVEL: "error"
|
@ -28,4 +28,5 @@ steps:
|
||||
|
||||
depends_on:
|
||||
- test
|
||||
- docs
|
||||
- release
|
||||
|
@ -6,11 +6,6 @@ when:
|
||||
- ${CI_REPO_DEFAULT_BRANCH}
|
||||
|
||||
steps:
|
||||
checksum:
|
||||
image: docker.io/alpine
|
||||
commands:
|
||||
- sha256sum retry > sha256sum.txt
|
||||
|
||||
changelog-generate:
|
||||
image: quay.io/thegeeklab/git-chglog
|
||||
commands:
|
||||
@ -28,9 +23,6 @@ steps:
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: github_token
|
||||
files:
|
||||
- retry
|
||||
- sha256sum.txt
|
||||
note: CHANGELOG.md
|
||||
overwrite: true
|
||||
title: ${CI_COMMIT_TAG}
|
||||
@ -39,3 +31,4 @@ steps:
|
||||
|
||||
depends_on:
|
||||
- test
|
||||
- docs
|
||||
|
Loading…
Reference in New Issue
Block a user