We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dae35bc commit 28a5ae2Copy full SHA for 28a5ae2
2 files changed
.github/workflows/calens.yml
@@ -26,8 +26,3 @@ jobs:
26
options: -v ${{github.workspace}}:/workspace -w /workspace
27
image: toolhippie/calens:latest
28
run: calens >| CHANGELOG.md
29
- - name: Commit files
30
- uses: stefanzweifel/git-auto-commit-action@v5
31
- with:
32
- commit_message: "docs: calens changelog updated"
33
- file_pattern: CHANGELOG.md
.github/workflows/commit.yml
@@ -0,0 +1,17 @@
1
+name: Commit Changelog Changes
2
+on:
3
+ push:
4
+ paths:
5
+ - CHANGELOG.md # Se activa cuando CHANGELOG.md cambia
6
+
7
+jobs:
8
+ commit:
9
+ runs-on: ubuntu-22.04
10
+ name: Commit changes
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Commit CHANGELOG.md
14
+ uses: stefanzweifel/git-auto-commit-action@v5
15
+ with:
16
+ commit_message: "docs: calens changelog updated"
17
+ file_pattern: CHANGELOG.md
0 commit comments