GitHub-Profile-Summary-Cards #2057
This file contains hidden or 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
| # The config file is used for vn7n24fzkq/github-profile-summary-cards | |
| name: GitHub-Profile-Summary-Cards | |
| on: | |
| schedule: # execute every 24 hours | |
| - cron: "* */24 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: generate | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: vn7n24fzkq/github-profile-summary-cards@release | |
| env: # default use ${{ secrets.GITHUB_TOKEN }}, you can change to your personal access token | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| USERNAME: ${{ github.repository_owner }} |