Update Dates #5271
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 "<hi@doka.guide>" | |
git add "./**/index.11tydata.json" | |
git commit -m "Правит поля updatedAt и createdAt" --author "Doka Dog <hi@doka.guide>" | |
git pull --rebase | |
git push origin main | |
exit | |
fi |