teoxoy / profile-readme-stats

Showcase your github stats on your profile README.md
https://github.com/marketplace/actions/profile-readme-stats
MIT License
257 stars 87 forks source link

Error: Something went wrong while executing your query #6

Closed Mr-KayJayDee closed 3 years ago

Mr-KayJayDee commented 3 years ago

Here the screenshot of the error.

image

The code they are asking to give: 07C2:4FCA:E5D17F:29EBB3A:607DC6CE

And my workflow config:

on:
  schedule:
    - cron: '0 */12 * * *'
  push:
    branches:
      - master
      - main
jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2.3.4 # here i just added the latest actions/checkout version because the v2 wasn't working
      with:
        fetch-depth: 0
    - name: Generate README.md
      uses: teoxoy/profile-readme-stats@v1
      with:
        token: ${{ secrets.GITHUB_TOKEN }}
    - name: Update README.md statistics
      run: |
        if [[ "$(git status --porcelain)" != "" ]]; then
        git config user.name github-actions[bot]
        git config user.email 41898282+github-actions[bot]@users.noreply.github.com
        git add .
        git commit -m "Update README"
        git push
        fi
teoxoy commented 3 years ago

That error is from Github's GraphQL API. Is this happening every time the action runs?

Mr-KayJayDee commented 3 years ago

Yes it is happenning every time the action runs.

teoxoy commented 3 years ago

Maybe you can report it here then.

teoxoy commented 3 years ago

Will close this. Feel free to reopen if you think the issue is with the action itself.