Skip to content
Compare
Choose a tag to compare
@JamesIves JamesIves released this 01 Sep 13:13
· 66 commits to releases/v1 since this release

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 to true 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 matches https://github.com/{username}.png (unless include-private is set to true 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>&nbsp;&nbsp;'
          marker: 'real-premium'
          active-only: false
          include-private: true

All of the above features have been documented in the README 📖

Full Changelog: v1...v1.5.0