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 69e1985 commit 9c338ebCopy full SHA for 9c338eb
2 files changed
.github/workflows/ci.yml
@@ -15,6 +15,9 @@ on:
15
workflow_dispatch:
16
17
jobs:
18
+ validate-changesets:
19
+ uses: ./.github/workflows/validate_changesets.yml
20
+
21
lint_git:
22
runs-on: ubuntu-latest
23
if: ${{ github.event_name != 'schedule' }}
.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
+ with:
+ repository: appsignal/mono
+ path: tmp/mono
+ - name: Install Ruby
+ uses: ruby/setup-ruby@v1
+ ruby-version: '3.3'
+ - name: Validate changesets
+ run: tmp/mono/bin/mono changeset validate
24
0 commit comments