Skip to content

feat: Adjust opacity and remove box-shadow #7

feat: Adjust opacity and remove box-shadow

feat: Adjust opacity and remove box-shadow #7

Workflow file for this run

name: Generate Changelog
on:
push:
branches:
- main
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install conventional-changelog-cli
run: npm install -g conventional-changelog-cli
- name: Generate changelog
run: conventional-changelog -p angular -i CHANGELOG.md -s
- name: Commit and push changelog
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add CHANGELOG.md
git commit -m 'chore: update changelog'
git push