Skip to content

Commit c558d98

Browse files
authored
Merge pull request rails#45674 from skipkayhil/add-changelog-linter
Add linter for CHANGELOG formatting [ci skip]
2 parents 3f81469 + a477096 commit c558d98

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/lint.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ permissions:
66
contents: read
77

88
jobs:
9+
changelog-formatting:
10+
name: Check CHANGELOGs formatting
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
with:
15+
repository: skipkayhil/rails-bin
16+
ref: 44270430c14385fd7db002b47f0819af5d824352
17+
- uses: ruby/setup-ruby@v1
18+
with:
19+
ruby-version: 3.1
20+
bundler-cache: true
21+
- uses: actions/checkout@v3
22+
with:
23+
path: rails
24+
- run: bin/check-changelogs ./rails
925
codespell:
1026
name: Check spelling all files with codespell
1127
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)