This commit is contained in:
Fabrice Lamant
2024-07-25 09:12:17 +02:00
parent d22467c4df
commit 67b84e06cb
2 changed files with 4 additions and 622 deletions

View File

@ -2,7 +2,7 @@ name: Auto update calendar
on:
schedule:
- cron: "0, */1 * * *"
- cron: "0 */1 * * *"
workflow_dispatch:
jobs:
@ -20,10 +20,10 @@ jobs:
- run: npm install
- run: npm start
- name: Set date
id: date-step
run: echo "DATE=$(date)" >> $GITHUB_ENV
id: date_step
run: echo "DATE=\"$(date)\"" >> $GITHUB_ENV
- uses: stefanzweifel/git-auto-commit-action@v5
env:
DATE: ${{ steps.date-step.outputs.DATE }}
DATE: ${{ steps.date_step.outputs.DATE }}
with:
commit_message: "calendar updates $DATE"