Files
github-repository-stats-action/.github/workflows/stats.yml
Julien Lengrand-Lambert 9540d0d61b Fixing branch names
2023-06-29 14:23:29 +02:00

17 lines
484 B
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 }}"