0.0.15 #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Changelog π | |
on: | |
release: | |
types: [released] | |
jobs: | |
update-changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Changelog Update on main branch π | |
uses: Fatal1tyBarucco/changelog_update@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Run Source Code Checkout | |
- name: 'Checkout source code' | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
fetch-depth: 0 | |
- run: git config --global user.email "[email protected]" | |
- run: git config --global user.name "Renato Barucco" | |
- run: git switch main | |
- run: git show-ref | |
- run: git remote -v | |
- run: git branch -vv | |
- run: git pull -v |