Update Dates #5206
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 Dates | |
on: | |
workflow_run: | |
workflows: | |
- "Update CHANGELOG" | |
branches: | |
- main | |
types: | |
- completed | |
concurrency: | |
group: Update Dates | |
jobs: | |
update-dates: | |
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: Правка полей updatedAt и createdAt | |
run: node .github/scripts/update-dates.js | |
- name: Создание коммита с обновлениями полей | |
run: | | |
if [[ -z $(git status -s) ]] | |
then | |
echo $(git status) | |
else | |
git config user.name "Doka Dog" | |
git config user.email "<[email protected]>" | |
git add "./**/index.11tydata.json" | |
git commit -m "Правит поля updatedAt и createdAt" --author "Doka Dog <[email protected]>" | |
git pull --rebase | |
git push origin main | |
exit | |
fi |