Skip to content

Traffic workflow

Traffic workflow #11

Workflow file for this run

name: Traffic
on: workflow_dispatch
jobs:
fetch_traffic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch views data
run: |
pwd &&
curl --request GET \
--url https://api.github.com/repos/${{ github.repository }}/traffic/views \
--header 'authorization: Bearer ${{ secrets.TRAFFIC_API }}' \
--header 'content-type: application/json' >> traffic/views.json && cat traffic/views.json