Update Sponsors in the README #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Sponsors in the README | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 21 * * 0-6 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Generate Sponsors 💖 | |
uses: JamesIves/github-sponsors-readme-action@v1 | |
with: | |
token: ${{ secrets.SPONSORS_TOKEN }} | |
file: "README.md" | |
if: ${{ github.repository == 'olimorris/codecompanion.nvim' }} | |
- name: Create Pull Request 🚀 | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: "docs: update sponsors in README.md" | |
title: "Update Sponsors in README" | |
labels: "ignore-for-release" | |
delete-branch: true |