|
I apologize if I have made a simple mistake, I don't have an enormous amount of github experience. (This is actually the first github action I have EVER tried implementing) I added your sponsors readme action by creating the file in my repository: name: Generate Sponsors README
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Generate Sponsors
uses: JamesIves/github-sponsors-readme-action@v1.0.8
with:
token: ${{ secrets.PAT }}I then went to my repository settings, and added a repository actions secret with a name of 'PAT' and with the value of the Token that I generated with read:user access. Here is my repository: https://github.com/Jieiku/abridge Here is the build log: Really appreciate any help, thank you, I will of coarse keep searching for the answer and come back and update this if I figure it out before your response. |
Answered by
JamesIves
May 28, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like you're missing the checkout step in your workflow; you may want to modify your workflow to look something similar to the README.