Skip to content

Commit 1098598

Browse files
authored
feat: add changelog check workflow for pull requests (#225)
1 parent e55553c commit 1098598

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

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

0 commit comments

Comments
 (0)