-
Notifications
You must be signed in to change notification settings - Fork 3.1k
36 lines (34 loc) · 826 Bytes
/
calens.yml
File metadata and controls
36 lines (34 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Calens Changelog
# This workflow is triggered on pushes to the repository.
on:
push:
branches:
- feature/*
- fix/*
- improvement/*
- release/*
- technical/*
permissions:
contents: read
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-22.04
name: Generate Calens Changelog
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Run Calens
uses: actionhippie/calens@v1
with:
target: CHANGELOG.md
- name: Commit files
uses: GuillaumeFalourd/git-commit-push@v1.3
with:
email: devops@owncloud.com
name: ownClouders
commit_message: "docs: calens changelog updated"
access_token: ${{ secrets.GH_PAT }}