Update main.yml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fetch GitHub Traffic Data | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs every day at midnight UTC | |
push: | |
branches: | |
- main | |
jobs: | |
fetch-traffic: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Fetch traffic data | |
id: traffic | |
run: | | |
API_URL_CLONES="https://api.github.com/repos/${{ github.repository }}/traffic/clones" | |
API_URL_TOP_PATHS="https://api.github.com/repos/${{ github.repository }}/traffic/popular/paths" | |
API_URL_TOP_REFERRERS="https://api.github.com/repos/${{ github.repository }}/traffic/popular/referrers" | |
API_URL_VIEWS="https://api.github.com/repos/${{ github.repository }}/traffic/views" | |
AUTH_HEADER="Authorization: token ${{ secrets.PAT }}" | |
curl -sSL -H "${AUTH_HEADER}" "${API_URL_CLONES}" > clones.json | |
curl -sSL -H "${AUTH_HEADER}" "${API_URL_TOP_PATHS}" > top_paths.json | |
curl -sSL -H "${AUTH_HEADER}" "${API_URL_TOP_REFERRERS}" > top_referrers.json | |
curl -sSL -H "${AUTH_HEADER}" "${API_URL_VIEWS}" > views.json | |
- name: Move JSON files to repository | |
run: | | |
mkdir -p traffic_data | |
mv clones.json top_paths.json top_referrers.json views.json traffic_data/ | |
- name: Display traffic data | |
run: | | |
cat clones.json | |
cat top_paths.json | |
cat top_referrers.json | |
cat views.json | |
# - name: Save traffic data to artifacts | |
# if: always() | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: traffic-data | |
# path: traffic.json |