Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
onkar69483 committed Feb 19, 2024
1 parent f898983 commit e9e47fc
Showing 1 changed file with 29 additions and 18 deletions.
47 changes: 29 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
- uses: Platane/snk@v3
with:
# GitHub username to read the contribution graph from (**required**)
# using action context var `github.repository_owner` or specified user
github_user_name: onkar69483
name: Generate Contribution Graphs

# List of files to generate.
# One file per line. Each output can be customized with options as a query string.
#
# Supported options:
# - palette: A preset of color, one of [github, github-dark, github-light]
# - color_snake: Color of the snake
# - color_dots: Comma-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: |
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
on:
push:
branches:
- main

jobs:
generate_graphs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Generate Contribution Graphs
uses: Platane/snk@v3
with:
github_user_name: onkar69483
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
- name: Commit and Push Changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "Generate contribution graphs"
git push

0 comments on commit e9e47fc

Please sign in to comment.