.github/workflows/cron.yml in fief-0.0.3 vs .github/workflows/cron.yml in fief-0.0.4
- old
+ new
@@ -1,10 +1,10 @@
---
name: cron
on:
schedule:
- - cron: "13 */4 * * *"
+ - cron: "13 4 * * 1,3,5"
concurrency:
group: cron
cancel-in-progress: true
jobs:
cron:
@@ -14,20 +14,22 @@
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- run: bundle install
- run: |
- bin/fief --token ${{ secrets.TOKEN }} --delay 1000 \
+ bin/fief --token ${{ secrets.TOKEN }} --delay 1500 \
--include jcabi/* \
--include yegor256/* \
--include sttc/* \
--include objectionary/* \
--include polystat/* \
--include zerocracy/* \
--include zold-io/* \
--exclude jcabi/.github \
--exclude yegor256/quiz \
- --excluce yegor256/hangman \
+ --exclude yegor256/hangman \
+ --exclude objectionary/.github \
+ --exclude polystat/.github \
--to gh-pages
- run: mkdir -p gh-pages/$(date +'%Y/%m/%d')
- run: cp gh-pages/index.xml gh-pages/$(date +'%Y/%m/%d')/index.xml
- uses: JamesIves/github-pages-deploy-action@v4.4.2
with: