computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
2 years ago
|
name: Update Sponsors
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch: # allow manual run
|
||
|
schedule:
|
||
|
- cron: '0 */3 * * *' # every 3 hours
|
||
|
|
||
|
env:
|
||
|
SPONSOR_SHEET_API_KEY: ${{ secrets.SPONSOR_SHEET_API_KEY }}
|
||
|
SPONSOR_SHEET_ID: ${{ secrets.SPONSOR_SHEET_ID }}
|
||
|
|
||
|
jobs:
|
||
|
update-sponsors:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 18
|
||
|
- uses: pnpm/action-setup@v2.2.2
|
||
|
with:
|
||
|
version: 7.13.4
|
||
|
- name: Update the Sponsors
|
||
|
run: |
|
||
|
pnpm install
|
||
|
node bin/roadmap-ads.cjs
|
||
|
- name: Create PR
|
||
|
uses: peter-evans/create-pull-request@v4
|
||
|
with:
|
||
|
delete-branch: false
|
||
|
branch: "update-sponsors"
|
||
|
base: "master"
|
||
|
labels: |
|
||
|
sponsors
|
||
|
automated pr
|
||
|
reviewers: kamranahmedse
|
||
|
commit-message: "chore: update sponsors"
|
||
|
title: "Upgrade Sponsor Banners"
|
||
|
body: |
|
||
|
Updates sponsor banners.
|
||
|
Please review the changes and merge if everything looks good.
|