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 16f205b + 76bf491 commit 10f4f07Copy full SHA for 10f4f07
README.md
@@ -1,3 +1,19 @@
1
# check-changie-changes-action
2
3
-This action checks if a new changelog file has been added in the commits
+This action checks if a new changelog file has been added in the commits. If not, it will fail the workflow.
4
+
5
+## Usage
6
7
+```yaml
8
+name: Check changelog changes
9
+steps:
10
+ - uses: actions/checkout@v3
11
+ with:
12
+ fetch-depth: 0
13
14
+ - name: Has changes file
15
+ # Some automated tooling might not immediately create a changelog file. These can be handled independently
16
+ if: github.actor != 'dependabot[bot]'
17
+ uses: mach-composer/check-changie-changes-action@v0.1.0
18
+```
19
0 commit comments