Add GitHub Sponsors to Readme
Version updated for JamesIves/github-sponsors-readme-action to version v1.5.0.
- This action is used across all versions by 7 repositories.
Go to the GitHub Marketplace to find the latest changes.
Release notes
What’s Changed
New Features 🎉
feat: ✨ Adds ability to display anonymized private sponsors. Private sponsors will be displayed in the list, however any identifying information will be redacted. This can be useful if you want to display all sponsors, regardless of their privacy settings. To enable this feature, you can set
include-private
totrue
in your workflow.feat: ✨ Adds the ability to use
avatarUrl
in a sponsorship template. This is an exposed field from the GitHub API and typically matcheshttps://github.com/{username}.png
(unlessinclude-private
is set totrue
that is)
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.PAT }}
file: 'README.md'
minimum: 2500
template: '<a href="https://github.com/{{{ login }}}"><img src="{{{ avatarUrl }}}" width="80px" alt="{{{ login }}}" /></a> '
marker: 'real-premium'
active-only: false
include-private: true
All of the above features have been documented in the README 📖
Full Changelog: https://github.com/JamesIves/github-sponsors-readme-action/compare/v1...v1.5.0