mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
19 lines
421 B
YAML
Executable File
19 lines
421 B
YAML
Executable File
name: Update Sponsors
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '33 10 * * *' # Set your preferred schedule (UTC)
|
|
|
|
jobs:
|
|
update-readme:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Update Sponsors
|
|
run: |
|
|
GH_TOKEN=${{ secrets.GITHUB_TOKEN }}
|
|
gh run workflow_dispatch -R $GITHUB_REPOSITORY update_sponsors_table.yml -t $GH_TOKEN
|