feat: make readme star action opt-in
This commit is contained in:
parent
37b2027a99
commit
9fb2c434f9
1 changed files with 26 additions and 16 deletions
42
.github/workflows/readme-stars.yml
vendored
42
.github/workflows/readme-stars.yml
vendored
|
@ -1,19 +1,29 @@
|
|||
name: Update README ⭐
|
||||
name: Update readme progress tracker
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "51 */4 * * *" # Every 4 hours
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "51 */4 * * *" # Every 4 hours
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-readme:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: k2bd/advent-readme-stars@v1
|
||||
with:
|
||||
userId: ${{ secrets.AOC_USER_ID }}
|
||||
sessionCookie: ${{ secrets.AOC_SESSION }}
|
||||
year: ${{ secrets.AOC_YEAR }}
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
with:
|
||||
commit_message: Update README stars
|
||||
update-readme:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
if: ${{ env.AOC_ENABLED }}
|
||||
env:
|
||||
AOC_ENABLED: ${{ secrets.AOC_ENABLED }}
|
||||
- uses: k2bd/advent-readme-stars@v1
|
||||
if: ${{ env.AOC_ENABLED }}
|
||||
env:
|
||||
AOC_ENABLED: ${{ secrets.AOC_ENABLED }}
|
||||
with:
|
||||
userId: ${{ secrets.AOC_USER_ID }}
|
||||
sessionCookie: ${{ secrets.AOC_SESSION }}
|
||||
year: ${{ secrets.AOC_YEAR }}
|
||||
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||
if: ${{ env.AOC_ENABLED }}
|
||||
env:
|
||||
AOC_ENABLED: ${{ secrets.AOC_ENABLED }}
|
||||
with:
|
||||
commit_message: "update readme progess"
|
||||
|
|
Loading…
Add table
Reference in a new issue