Skip to content

Merge pull request #2706 from stefanhaller/fix-discard-change-prompt #295

Merge pull request #2706 from stefanhaller/fix-discard-change-prompt

Merge pull request #2706 from stefanhaller/fix-discard-change-prompt #295

Workflow file for this run

# see https://github.com/JamesIves/github-sponsors-readme-action
name: Generate Sponsors README
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Generate Sponsors 💖
uses: JamesIves/[email protected]
with:
token: ${{ secrets.SPONSORS_TOKEN }}
file: 'README.md'
if: ${{ github.repository == 'jesseduffield/lazygit' }}
- name: Commit and push if changed
run: |-
git diff
git config --global user.email "[email protected]"
git config --global user.name "README-bot"
git add README.md
git commit -m "Updated README.md" || exit 0
git push