Skip to content

Commit 96dd860

Browse files
authored
Add a changelog entry check for pull requests (#108)
1 parent 0717373 commit 96dd860

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Changelog entry check
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- labeled
9+
- unlabeled
10+
- synchronize
11+
12+
defaults:
13+
run:
14+
shell: bash
15+
16+
permissions:
17+
contents: read
18+
pull-requests: write
19+
20+
jobs:
21+
changelog-entry-check:
22+
uses: dbt-labs/actions/.github/workflows/changelog-existence.yml@main
23+
with:
24+
changelog_comment: >-
25+
Thank you for your pull request! We could not find a changelog entry for this change.
26+
For details on how to document a change, see the
27+
[dbt-postgres contributing guide](https://github.com/dbt-labs/dbt-postgres/blob/main/CONTRIBUTING.md).
28+
skip_label: "Skip Changelog"
29+
secrets: inherit

0 commit comments

Comments
 (0)