-
I want to update my README.md directly in master but failed name: Generate Sponsors README
on:
push
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.PAT }}
file: 'README.md'
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="60px" alt="{{ name }}" style="border-radius: 50%;" /></a>'
- name: Deploy to GitHub Pages 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: master
folder: '.' but I got a fetal error
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Can you log what |
Beta Was this translation helpful? Give feedback.
-
@JamesIves I don't think casued by PAT, I've gave almost all permissions. and I can't see what's the result of the final README, but it show successfully |
Beta Was this translation helpful? Give feedback.
-
all works well after I added Thx! |
Beta Was this translation helpful? Give feedback.
-
what's more I want to know if I can set the avator to round? my custom style |
Beta Was this translation helpful? Give feedback.
all works well after I added
active-only: false
because I've no activate sponsors except past sponsors
Thx!