mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-04-23 14:08:10 +00:00
1f88aaeb32
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 6.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v4.2.2...v6.0.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
1000 B
YAML
32 lines
1000 B
YAML
name: Generate Sponsors List
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
generate-sponsors:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6.0.2
|
|
|
|
- name: Generate Sponsors
|
|
uses: JamesIves/github-sponsors-readme-action@v1
|
|
with:
|
|
token: ${{ secrets.SPONSORS_GENERATOR_PAT }}
|
|
active-only: false
|
|
file: "README.md"
|
|
template: '<a href="https://github.com/{{{ login }}}"><img src="{{{ avatarUrl }}}" width="64px" alt="User avatar: {{{ login }}}" /></a> '
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v8
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: |
|
|
docs: regenerate readme sponsors list
|
|
committer: GitHub <noreply@github.com>
|
|
author: GitHub <noreply@github.com>
|
|
branch: docs/update-readme
|
|
title: |
|
|
docs: regenerate readme sponsors list
|
|
labels: bot
|