(READ ONLY) Margin is an open annotation layer for the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
99
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add GitHub Actions workflow for Sponsors README generation

authored by

Scan and committed by
GitHub
9b71292e 8bfe7e69

+28
+28
.github/workflows/sponsors.yml
··· 1 + name: Generate Sponsors README 2 + on: 3 + workflow_dispatch: 4 + schedule: 5 + - cron: '30 15 * * 0-6' 6 + permissions: 7 + contents: write 8 + jobs: 9 + deploy: 10 + runs-on: ubuntu-latest 11 + steps: 12 + - name: Checkout 🛎️ 13 + uses: actions/checkout@v2 14 + 15 + - name: Generate Sponsors 💖 16 + uses: JamesIves/github-sponsors-readme-action@v1.6.0 17 + with: 18 + token: ${{ secrets.GH_SPONSORS_TOKEN }} 19 + file: README.md 20 + organization: true 21 + minimum: 2500 22 + maximum: 2500 23 + 24 + - name: Deploy 🚀 25 + uses: JamesIves/github-pages-deploy-action@v4 26 + with: 27 + branch: main 28 + folder: '.'