8000 修复:主页面 · RRQM/RRQM@a61cce2 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000

Generate Snake #52

Generate Snake

Generate Snake #52

# GitHub Action for generating a contribution graph with a snake eating your contributions.
name: Generate Snake
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
environment:
name: SNAKE_ENV
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
- name: Generate Snake
uses: Platane/snk@v3.0.0
with:
github_user_name: ${{ github.repository_owner }}
outputs: |
dist/github-snake.svg
dist/github-snake-dark.svg?palette=github-dark
dist/ocean.gif?color_snake=orange&color_dots=#bfd6f6,#8dbdff,#64a1f4,#4b91f1,#3c7dd9
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- name: Push to GitHub
uses: EndBug/add-and-commit@v9.1.3
with:
branch: main
message: 'Generate Contribution Snake'
0