GitHub-Profile-Summary-Cards #132
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: GitHub-Profile-Summary-Cards | |
on: | |
create: | |
push: | |
schedule: # execute every Monday At 05:30 on | |
- cron: "30 5 * * MON" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: generate | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: vn7n24fzkq/github-profile-summary-cards@release | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
USERNAME: ${{ github.repository_owner }} | |
- uses: yoshi389111/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
USERNAME: ${{ github.repository_owner }} | |
- name: Commit & Push | |
run: | | |
git config user.name "profile-summary-cards[bot]" | |
git config user.email "[email protected]" | |
git add -A . | |
git commit -m "generated" | |
git push |