Skip to content

Commit

Permalink
Release: Add Changelog CI workflow (v0.1.6) (#41)
Browse files Browse the repository at this point in the history
* chore: Add Changelog CI workflow

* chore: Add Changelog CI workflow

* chore: Update Changelog CI workflow and dependencies

* chore: Update Changelog CI workflow and dependencies

* chore: Update Changelog CI workflow and dependencies

* chore: Update Changelog CI workflow and dependencies

* [Changelog CI] Add Changelog for Version v0.1.6

* chore: Update Changelog CI workflow and dependencies

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>, @devansh-shah-11
  • Loading branch information
Devasy23 authored Jun 4, 2024
1 parent e222588 commit b82ae4a
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/changelog-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Changelog CI

# Trigger on pull request event
on:
pull_request:
types: [ opened, synchronize, reopened ]



jobs:
build:
runs-on: ubuntu-latest

steps:
# Check out the repository content
- uses: actions/checkout@v2

# Run Changelog CI action
- name: Run Changelog CI
uses: saadmk11/[email protected]
with:
changelog_filename: CHANGELOG.md
committer_username: github-actions[bot]
committer_email: github-actions[bot]@users.noreply.github.com
config_file: changelog-config.yaml
# GitHub token for authorization
github_token: ${{ secrets.GITHUB_TOKEN }}
# Create a new release
# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.run_number }}
# release_name: Release ${{ github.run_number }}
# draft: false
# prerelease: false

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# Version: v0.1.6

* [#1](https://github.com/Devasy23/FaceRec/pull/1): Merge code mark 1
* [#3](https://github.com/Devasy23/FaceRec/pull/3): Merge code mark 1
* [#4](https://github.com/Devasy23/FaceRec/pull/4): Add issue and pull request templates
* [#5](https://github.com/Devasy23/FaceRec/pull/5): Merge update
* [#6](https://github.com/Devasy23/FaceRec/pull/6): Refactor code, add tests, and update dependencies
* [#27](https://github.com/Devasy23/FaceRec/pull/27): Preliminary code for vector search
* [#31](https://github.com/Devasy23/FaceRec/pull/31): Add Face Recognition System Proposal and Project Plan
* [#39](https://github.com/Devasy23/FaceRec/pull/39): Update sonarcloud.yml


## [0.0.1] - 2024-03-08 - 2:30

### Added
Expand Down
17 changes: 17 additions & 0 deletions changelog-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
changelog_type: pull_request
header_prefix: '##'
version_prefix: '['
version_suffix: ']'
sections:
- section: '### Added'
labels: ['added', 'feature', 'enhancement']
- section: '### Changed'
labels: ['changed', 'refactor']
- section: '### Fixed'
labels: ['fixed', 'bug']
- section: '### Removed'
labels: ['removed', 'deprecated']
include_unlabeled_changes: true
unlabeled_group_title: 'Other Changes'
pull_request_title_regex: '^Release:.*\\(v[0-9]+\\.[0-9]+\\.[0-9]+\\)'
version_regex: 'v([0-9]+\\.[0-9]+\\.[0-9]+)'

0 comments on commit b82ae4a

Please sign in to comment.