2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-05 16:42:32 +03:00

chore(actions): Add action to update sponsor list in Readme.md; (#6552)

This commit is contained in:
Dmitriy Mozgovoy
2024-08-17 20:13:56 +03:00
committed by GitHub
parent abd24a7367
commit 58eb3b8ae6
3 changed files with 125 additions and 59 deletions
+61
View File
@@ -0,0 +1,61 @@
name: Update Readme sponsor list
on:
workflow_dispatch:
repository_dispatch:
types:
- webhook
schedule:
# Run at 0000 daily
- cron: '0 1 * * *'
jobs:
sponsors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- run: npm ci
- name: Generate PR
id: sponsors
run: node ./bin/sponsors.js
- name: Notify status
if: ${{ steps.sponsors.outputs.changed }}
run: |
echo "Sponsor block has changed. Creating PR with updates..."
- name: Create pull request
if: ${{ steps.sponsors.outputs.changed }}
uses: peter-evans/create-pull-request@v6
id: cpr
with:
branch: sponsors
delete-branch: true
commit-message: 'chore(sponsor): update sponsor block'
title: '[Chore] Update sponsor block'
body: |
**New sponsor block update:**
{{ steps.sponsors.outputs.content }}
labels: |
readme
automated pr
automerge
signoff: false
#team-reviewers: |
# owners
# maintainers
#assignees: jasonsaayman
#reviewers: jasonsaayman
draft: false
- name: Show PR link
if: ${{ steps.sponsors.outputs.changed }}
run: |
echo "Sponsor block has changed. Creating PR..."
echo "Axios Release v${{ steps.package-version.outputs.current-version}}' pull request - ${{ steps.cpr.outputs.pull-request-url }}"