* remove buggy use of useNorificationStates #428
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: Append To Changelogs | |
on: | |
# push: | |
# branches: [master] | |
jobs: | |
append: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Append | |
run: | | |
heading=`date` | |
printf "\n$heading\n" >> CHANGELOGS.md | |
cat CHANGED.md >> CHANGELOGS.md | |
printf "\n" >> CHANGELOGS.md | |
> CHANGED.md | |
# cat CHANGELOGS.md | |
# cat CHANGED.md | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add CHANGELOGS.md CHANGED.md | |
git commit -m "Update changelogs" | |
git push |