8000 chore(website): added cron job to update sponsors data daily (#4372) · lonyele/typescript-eslint@41c6474 · GitHub
[go: up one dir, main page]

Skip to content < 8000 span data-view-component="true" class="progress-pjax-loader Progress position-fixed width-full">

Commit 41c6474

Browse files
author
Josh Goldberg
authored
chore(website): added cron job to update sponsors data daily (typescript-eslint#4372)
1 parent d4768c0 commit 41c6474

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/update-sponsors.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Update Sponsors Data
2+
3+
on:
4+
branch: main
5+
schedule:
6+
- cron: "0 0 * * *"
7+
8+
jobs:
9+
build:
10+
name: Commit if needed
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: Codecademy/run-on-yarn@v1
15+
with:
16+
command: generate-sponsors
17+
- uses: EndBug/add-and-commit@v7
18+
with:
19+
message: 'chore: update sponsors data'

0 commit comments

Comments
 (0)
0