Skip to content

Commit

Permalink
Merge pull request #9 from noclocks/develop
Browse files Browse the repository at this point in the history
[docs]: add CHANGELOG.md and GHA
  • Loading branch information
jimbrig authored Mar 13, 2024
2 parents 3effd5e + d599d8c commit 8893ac2
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Automate Changelog
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Git Cliff
uses: tj-actions/[email protected]
id: git-cliff
with:
args: "--verbose"
output: "CHANGELOG.md"
template-config: https://raw.githubusercontent.com/noclocks/.github/main/workflow-templates/cliff.template.toml
- name: Print Changelog
id: print-changelog
run: |
cat "CHANGELOG.md"
- name: Commit and Push
id: commit-push
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
set +e
git add CHANGELOG.md
git commit -m "[chore]: update changelog"
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git "main"
Empty file added CHANGELOG.md
Empty file.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Law Offices of Villard Bastien Website

> [!NOTE]
> Bastien Law website (clone) built with Remix (+ Vite for SPA mode)
<!-- BADGES:Start -->

[![Automate Changelog](https://github.com/noclocks/bastienlaw-remix/actions/workflows/changelog.yml/badge.svg)](https://github.com/noclocks/bastienlaw-remix/actions/workflows/changelog.yml)

<!-- BADGES:End -->

## Tech Stack

`bastienlaw-remix` is built on the following main stack:
Expand Down

0 comments on commit 8893ac2

Please sign in to comment.