Update contribution card #6
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
| # Reference workflow: copy this into your profile repo (YOURHANDLE/YOURHANDLE) | |
| # at .github/workflows/update-card.yml and replace YOURHANDLE below. | |
| name: Update contribution card | |
| on: | |
| schedule: | |
| - cron: "0 3 * * *" # 03:00 UTC daily | |
| workflow_dispatch: # allow manual trigger from the Actions tab | |
| jobs: | |
| update-card: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Nexory/BugMergeStats@main | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| username: YOURHANDLE | |
| output_path: card.svg | |
| theme: dark |