mirror of
https://github.com/PacketParker/PacketParker.git
synced 2025-04-18 21:24:48 -05:00
18 lines
381 B
YAML
18 lines
381 B
YAML
name: Metrics
|
|
on:
|
|
# Schedule daily updates
|
|
schedule: [{cron: "0 0 * * *"}]
|
|
workflow_dispatch:
|
|
push: {branches: ["master", "main"]}
|
|
jobs:
|
|
github-metrics:
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: production
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: lowlighter/metrics@latest
|
|
with:
|
|
token: ${{ secrets.METRICS_TOKEN }}
|