Skip to content

GitHub-Profile-Summary-Cards #128

GitHub-Profile-Summary-Cards

GitHub-Profile-Summary-Cards #128

Workflow file for this run

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