Skip to content

Commit

Permalink
chore: adding secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
kiraum committed May 17, 2024
1 parent 8ae0823 commit 4735c3d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/generate_reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Generate IXPs reports
on: # yamllint disable-line rule:truthy
schedule:
- cron: "50 13 * * *"
- cron: "25 14 * * *"
permissions:
contents: write
jobs:
Expand All @@ -23,6 +23,8 @@ jobs:
pip install --no-cache-dir -U pip uv
uv pip install --system --break-system-packages -r requirements.txt
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN}}
- name: Generate reports
run: python3 peering_gossip.py -lg https://lg.ix.br
- name: Commit report
Expand Down Expand Up @@ -50,6 +52,8 @@ jobs:
pip install --no-cache-dir -U pip uv
uv pip install --system --break-system-packages -r requirements.txt
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN}}
- name: Generate reports
run: python3 peering_gossip.py -lg https://lg.ams-ix.net
- name: Commit report
Expand Down Expand Up @@ -77,6 +81,8 @@ jobs:
pip install --no-cache-dir -U pip uv
uv pip install --system --break-system-packages -r requirements.txt
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN}}
- name: Generate reports
run: python3 peering_gossip.py -lg https://lg.de-cix.net
- name: Commit report
Expand Down Expand Up @@ -104,6 +110,8 @@ jobs:
pip install --no-cache-dir -U pip uv
uv pip install --system --break-system-packages -r requirements.txt
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN}}
- name: Generate reports
run: python3 peering_gossip.py -lg https://alice-rs.linx.net
- name: Commit report
Expand Down

0 comments on commit 4735c3d

Please sign in to comment.