Skip to content

Commit 985acd7

Browse files
committed
chore: Add changelog-check github actions workflow
1 parent b9f5780 commit 985acd7

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Check Changelog
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, labeled, unlabeled]
6+
merge_group:
7+
8+
jobs:
9+
check-changelog:
10+
name: Check changelog
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check changelog
14+
uses: MetaMask/github-tools/.github/actions/check-changelog@v1
15+
with:
16+
base-branch: ${{ github.event.pull_request.base.ref }}
17+
head-ref: ${{ github.head_ref }}
18+
labels: ${{ toJSON(github.event.pull_request.labels) }}
19+
pr-number: ${{ github.event.pull_request.number }}
20+
repo: ${{ github.repository }}

0 commit comments

Comments
 (0)