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.
2 parents 0d87b85 + d302a93 commit 1ed824dCopy full SHA for 1ed824d
.github/workflows/check-changeset.yml
@@ -0,0 +1,31 @@
1
+name: Check for Changeset
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ require-changeset:
10
+ runs-on: ubuntu-latest
11
+ if: github.actor != 'renovate[bot]' && github.actor != 'dependabot[bot]'
12
+ steps:
13
+ - name: Clone @api3/contracts
14
+ uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
18
+ - name: Setup pnpm
19
+ uses: pnpm/action-setup@v4
20
21
+ - name: Setup Node
22
+ uses: actions/setup-node@v4
23
24
+ node-version: '20.17.0'
25
+ cache: 'pnpm'
26
27
+ - name: Install dependencies
28
+ run: pnpm install
29
30
+ - name: Check for changeset
31
+ run: pnpm changeset status --since=origin/main
0 commit comments