-
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. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
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. |
Beta Was this translation helpful? Give feedback.
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.