We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146174d commit 8b0745cCopy full SHA for 8b0745c
2 files changed
.github/workflows/ci.yml
@@ -104,3 +104,6 @@ jobs:
104
with:
105
fetch-depth: 0 # Fetch depth is required
106
- uses: lintje/action@v0.11
107
+
108
+ validate-changesets:
109
+ uses: ./.github/workflows/validate_changesets.yml
.github/workflows/validate_changesets.yml
@@ -0,0 +1,24 @@
1
+name: Validate changesets
2
3
+on:
4
+ workflow_call:
5
6
+jobs:
7
8
+ name: Validate changesets
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout project
12
+ uses: actions/checkout@v4
13
+ - name: Checkout Mono
14
15
+ with:
16
+ repository: appsignal/mono
17
+ path: tmp/mono
18
+ - name: Install Ruby
19
+ uses: ruby/setup-ruby@v1
20
21
+ ruby-version: '3.3'
22
+ - name: Validate changesets
23
+ run: tmp/mono/bin/mono changeset validate
24
0 commit comments