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 0717373 commit 96dd860Copy full SHA for 96dd860
.github/workflows/changelog-entry-check.yml
@@ -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