Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Schedule - Cloudflare Proxied Networks Update #754

Schedule - Cloudflare Proxied Networks Update

Schedule - Cloudflare Proxied Networks Update #754

---
name: Schedule - Cloudflare Proxied Networks Update
on: # yamllint disable-line rule:truthy
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
env:
CLOUDFLARE_PROXIED_NETWORKS_FILE: >-
kubernetes/apps/networking/ingress-nginx/app/cloudflare-proxied-networks.txt
jobs:
cloudflare-proxied-networks-update:
name: Cloudflare Proxied Networks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate Token
uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: '${{ secrets.TRUXNELL_APP_ID }}'
private_key: '${{ secrets.TRUXNELL_APP_PRIVATE_KEY }}'
- name: Cloudflare Proxied Networks
run: |
bash ./.github/scripts/cloudflare-proxied-networks.sh > ${{ env.CLOUDFLARE_PROXIED_NETWORKS_FILE }}
- name: Create pull request
uses: peter-evans/create-pull-request@v5
with:
token: '${{ steps.generate-token.outputs.token }}'
branch: github-action/update-cloudflare-proxied-networks
delete-branch: true
title: 'chore(github-action): update cloudflare proxied networks'
signoff: true
commit-message: 'chore(github-action): update cloudflare proxied networks'
body: |
Update cloudflare proxy networks configmap from https://www.cloudflare.com/ips/
labels: |
renovate/github-action