2023-10-26 06:35:18 +00:00
|
|
|
name: Generate Sponsors README
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: 30 15 * * 0-6
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
2023-11-16 21:16:52 +00:00
|
|
|
if: github.repository_owner == 'Inventree'
|
|
|
|
|
2023-10-26 06:35:18 +00:00
|
|
|
steps:
|
2023-11-08 23:59:36 +00:00
|
|
|
- name: Checkout Code
|
2023-10-26 06:35:18 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
|
|
|
2023-11-08 23:59:36 +00:00
|
|
|
- name: Generate Sponsors
|
2023-10-26 06:35:18 +00:00
|
|
|
uses: JamesIves/github-sponsors-readme-action@a2d75a8d58b117b19777a910e284ccb082aaf117
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.INVENTREE_SPONSORS_TOKEN }}
|
|
|
|
file: 'README.md'
|
2023-10-26 07:17:26 +00:00
|
|
|
organization: true
|
2023-10-26 06:35:18 +00:00
|
|
|
|
2023-11-08 23:59:36 +00:00
|
|
|
- name: Commit files
|
|
|
|
run: |
|
|
|
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
|
git config --local user.name "github-actions[bot]"
|
|
|
|
git checkout -b sponsors
|
|
|
|
git add README.md
|
|
|
|
git commit -m "updated sponsors"
|
|
|
|
|
|
|
|
- name: Push Changes
|
|
|
|
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df
|
2023-10-26 06:35:18 +00:00
|
|
|
with:
|
2023-11-08 23:59:36 +00:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
branch: sponsors
|
|
|
|
force: true
|