-
Notifications
You must be signed in to change notification settings - Fork 2
/
.drone.yml
62 lines (51 loc) · 1.08 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
kind: pipeline
name: documentation
platform:
os: linux
arch: amd64
steps:
- name: markdownlint
image: node:lts-alpine
commands:
- npm install -g markdownlint-cli
- markdownlint -p .gitignore 'README.md'
- name: spellcheck
image: node:lts-alpine
commands:
- npm install -g spellchecker-cli
- spellchecker --files 'README.md' -d .dictionary -p spell indefinite-article syntax-urls frontmatter --frontmatter-keys title --no-suggestions
environment:
FORCE_COLOR: true
NPM_CONFIG_LOGLEVEL: error
trigger:
ref:
- refs/heads/source
- refs/pull/**
---
kind: pipeline
name: notification
platform:
os: linux
arch: amd64
steps:
- name: notify
image: plugins/slack:1
settings:
channel:
from_secret: rocketchat_chat_channel
webhook:
from_secret: rocketchat_chat_webhook
trigger:
ref:
- refs/heads/main
- refs/tags/**
status:
- success
- failure
depends_on:
- documentation
---
kind: signature
hmac: 4308db877e5c1ab850e9d96f1ef4cc78727755748fb25be35e669b6f876ba9db
...