mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 15:46:26 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
1,009 B
YAML
30 lines
1,009 B
YAML
# 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@v7
|
|
|
|
- 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@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # 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 }}
|