mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-15 22:05:55 +08:00
28 lines
635 B
YAML
28 lines
635 B
YAML
|
name: Generate Sponsors README
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
schedule:
|
||
|
- cron: 30 15 * * 0-6
|
||
|
permissions:
|
||
|
contents: write
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout 🛎️
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Generate Sponsors 💖
|
||
|
uses: JamesIves/github-sponsors-readme-action@v1
|
||
|
with:
|
||
|
token: ${{ secrets.SPONSORS_PAT }}
|
||
|
file: 'README.md'
|
||
|
minimum: 2500
|
||
|
organization: true
|
||
|
|
||
|
- name: Deploy to GitHub Pages 🚀
|
||
|
uses: JamesIves/github-pages-deploy-action@v4
|
||
|
with:
|
||
|
branch: main
|
||
|
folder: '.'
|