mirror of
https://github.com/jlengrand/github-repository-stats-action.git
synced 2026-03-10 08:21:21 +00:00
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
on:
|
|
schedule:
|
|
- cron: '30 5 * * *' # Every day at 5:30 AM UTC
|
|
|
|
jobs:
|
|
stats_job:
|
|
runs-on: ubuntu-latest
|
|
name: Grabbing latest statistics from the repository, every day
|
|
steps:
|
|
- name: Grabbing repo stats
|
|
id: stats
|
|
uses: /jlengrand/github-repository-stats-action@main
|
|
with:
|
|
access-token: ${{ secrets.ACCESS_TOKEN }}
|
|
- name: Grabbing repo stats output
|
|
run: echo "The payload is ${{ steps.stats.outputs.payload }}"
|
|
- name: elm-firebase
|
|
uses: /jlengrand/github-repository-stats-action@main
|
|
with:
|
|
access-token: ${{ secrets.ACCESS_TOKEN }}
|
|
repository: jlengrand/elm-firebase
|
|
- name: epaper-dashboard-blog
|
|
uses: /jlengrand/github-repository-stats-action@main
|
|
with:
|
|
access-token: ${{ secrets.ACCESS_TOKEN }}
|
|
repository: jlengrand/epaper-dashboard-blog
|
|
- name: epaper-dashboard-blog
|
|
uses: /jlengrand/github-repository-stats-action@main
|
|
with:
|
|
access-token: ${{ secrets.ACCESS_TOKEN }}
|
|
repository: jlengrand/swacli
|
|
- name: elm-ports
|
|
uses: /jlengrand/github-repository-stats-action@main
|
|
with:
|
|
access-token: ${{ secrets.ACCESS_TOKEN }}
|
|
repository: jlengrand/elm-ports |