Update CHANGELOG #354
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: | |
workflow_run: | |
workflows: | |
- "Frontmatter Lint" | |
branches: | |
- main | |
types: | |
- completed | |
concurrency: | |
group: Update CHANGELOG | |
jobs: | |
update_changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.DOKA_BOT_ACCESS_TOKEN }} | |
fetch-depth: 2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Ищет новые материалы и обновляет CHANGELOG | |
run: sh .github/scripts/update-changelog.sh | |
- name: Создание коммита с обновлениями полей | |
run: | | |
if [[ -z $(git status -s) ]] | |
then | |
echo $(git status) | |
else | |
git config --global user.name "Doka Dog" | |
git config --global user.email "<[email protected]>" | |
git add CHANGELOG.md | |
git commit -m "Обновляет CHANGELOG" --author "Doka Dog <[email protected]>" | |
git pull --rebase | |
git push origin main | |
exit | |
fi |