-
Notifications
You must be signed in to change notification settings - Fork 1
26 lines (22 loc) · 921 Bytes
/
repo-stats.yml
File metadata and controls
26 lines (22 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Collects daily repository traffic statistics using the github-repo-stats action.
# Data snapshots and reports (HTML + PDF) are committed to the 'github-repo-stats' branch.
# See: https://github.com/jgehrcke/github-repo-stats
name: github-repo-stats
on:
schedule:
# Run daily at 6:00 AM US Eastern (11:00 UTC).
- cron: "0 11 * * *"
workflow_dispatch: # Allow manual triggering from the Actions tab.
permissions:
contents: write
jobs:
collect-stats:
name: collect-repo-stats
if: github.repository == 'awslabs/fullstack-solution-template-for-agentcore'
runs-on: ubuntu-latest
steps:
- name: run-ghrs
uses: jgehrcke/github-repo-stats@RELEASE
with:
ghtoken: ${{ secrets.GHRS_GITHUB_API_TOKEN }}
ghpagesprefix: "https://awslabs.github.io/fullstack-solution-template-for-agentcore"