forked from open-telemetry/semantic-conventions
-
Notifications
You must be signed in to change notification settings - Fork 0
179 lines (151 loc) · 5.15 KB
/
Copy pathchecks.yml
File metadata and controls
179 lines (151 loc) · 5.15 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
name: Checks
on:
push:
branches:
- main
pull_request:
merge_group:
permissions:
contents: read
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: install dependencies
run: npm ci --ignore-scripts
- name: Check file and folder names
run: make check-file-and-folder-names-in-docs
- name: run markdownlint
uses: DavidAnson/markdownlint-cli2-action@6bf21b07787794f89a243495939cd651942aeabe # v24.1.0
with:
globs: '**/*.md'
yamllint:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
- name: check YAML file extensions
run: make check-yaml-extension
- name: install yamllint
run: make install-yamllint
- name: run yamllint
run: yamllint . -f github
link-check:
uses: ./.github/workflows/reusable-link-check.yml
markdown-toc-check:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: install dependencies
run: npm ci --ignore-scripts
- name: run markdown-toc
run: make markdown-toc-check
misspell:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: streetsidesoftware/cspell-action@de2a73e963e7443969755b648a1008f77033c5b2 # v8.4.0
with:
incremental_files_only: false # check all files, not just changed files
config: .cspell.yaml
suggestions: true
treat_flagged_words_as_errors: true
textlint:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: install dependencies
run: npm ci --ignore-scripts
- name: run textlint
run: make textlint format=github
semantic-conventions:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: verify semantic convention tables
run: make table-check
semantic-conventions-registry:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: verify registry tables
run: |
make registry-generation
git diff --exit-code './docs/registry/*.md' || (echo 'Attribute registry markdown is out of date, please run "make registry-generation" and commit the changes in this PR.' && exit 1)
schemas-check:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: verify schemas
run: make schema-check
areas-dropdown-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Components dropdown in issue templates
run: |
make generate-gh-issue-templates
git diff --exit-code '.github/ISSUE_TEMPLATE' || (echo 'Dropdowns in issue templates is out of date, please run "make generate-gh-issue-templates" and commit the changes in this PR. Please note, if you are running it on Mac OS X, please make sure to use GNU version of sed instead of default "sed".' && exit 1)
policies-check:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: verify semantic conventions yaml definitions
run: make check-policies
polices-test:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: verify semantic conventions yaml definitions
run: make test-policies
dead-yaml-check:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: find signals defined in yaml files that are not used in the markdown files
run: make check-dead-yaml
areas-table-check:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: check if the areas table is out-of-date
run: make areas-table-check