Make a Snake #376
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: Make a Snake | |
on: | |
# run automatically every day at 00:00 UTC | |
schedule: | |
- cron: "0 0 * * *" | |
# allows to manually run the job at any time | |
workflow_dispatch: | |
jobs: | |
snake: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token. | |
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. | |
- name: make-snake | |
uses: Platane/snk@v2 | |
with: | |
# github user name to read the contribution graph from (**required**) | |
# using action context var `github.repository_owner` or specified user | |
github_user_name: ${{ github.repository_owner }} | |
# list of files to generate. | |
# one file per line. Each output can be customized with options as query string. | |
# | |
# supported options: | |
# - palette: A preset of color, one of [github, github-dark, github-light] | |
# - color_snake: Color of the snake | |
# - color_dots: Coma separated list of dots color. | |
# The first one is 0 contribution, then it goes from the low contribution to the highest. | |
# Exactly 5 colors are expected. | |
outputs: | | |
resources/github-snake.svg | |
resources/github-snake-dark.svg?palette=github-dark | |
resources/snake.gif?color_snake=purple&color_dots=#ebedf0,#9be9a8,#40c463,#30a14e,#216e39 | |
resources/snake-dark.gif?color_snake=purple&color_dots=#161b22,#01311f,#006d32,#26a641,#40c463 | |
resources/ocean.gif?color_snake=orange&color_dots=#bfd6f6,#8dbdff,#64a1f4,#4b91f1,#3c7dd9 | |
resources/git-snake.gif | |
resources/git-snake-dark.gif?palette=github-dark | |
- name: Commit files | |
run: | | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add -f ./resources | |
git commit --allow-empty -a -m "Update snek" | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |