Skip to content

Commit

Permalink
ci: add daily badge cache refresh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dkmaker committed Dec 28, 2024
1 parent ea25806 commit b36771f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/refresh-badges.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Refresh Badges

on:
schedule:
- cron: '0 0 * * *' # Run at 00:00 UTC every day
push:
branches:
- main
workflow_dispatch: # Allow manual triggering

jobs:
refresh:
runs-on: ubuntu-latest
steps:
- name: Refresh badges
uses: b3b00/refreshBadgesAction@v1.0.7
with:
repository: 'zenturacp/mcp-rest-api'
branch: 'main'

0 comments on commit b36771f

Please sign in to comment.