Allow customizing the window width/height thresholds for when to use … #1172
This file contains hidden or 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
| # see https://github.com/JamesIves/github-sponsors-readme-action | |
| name: Generate Sponsors README | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository == 'jesseduffield/lazygit' }} | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@v6 | |
| - name: Generate Sponsors 💖 | |
| uses: JamesIves/github-sponsors-readme-action@2fd9142e765f755780202122261dc85e78459405 # v1.6.0 | |
| with: | |
| token: ${{ secrets.SPONSORS_TOKEN }} | |
| file: "README.md" | |
| - name: Create Pull Request 🚀 | |
| uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8 | |
| with: | |
| commit-message: "README.md: Update Sponsors" | |
| title: "README.md: Update Sponsors" | |
| author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" | |
| labels: "ignore-for-release" | |
| delete-branch: true | |
| token: ${{ secrets.SPONSORS_PR_TOKEN }} |