Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: youtube runner failed, please verify the configuration. Error 404 #65

Closed
cybercoder-naj opened this issue May 14, 2021 · 3 comments
Labels
invalid Not a bug or feature request

Comments

@cybercoder-naj
Copy link

Describe the bug
I have a workflow that draws from Youtube. For many months, I have used it and it worked perfectly but now it seems to fail.
When I enter the link https://www.youtube.com/feeds/videos.xml?channel_id=XXXX in my browser, I get all my data.

Expected behavior
I expect the workflow to get the required contents and updated my README.md accordingly.

Screenshots
image

Workflow Yml Used

name: YouTube Videos
on:
  schedule:
    - cron: '0 * * * *'
  workflow_dispatch:

jobs:
  update-readme-with-youtube:
    name: Update this repo's README with latest videos from YouTube
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: gautamkrishnar/blog-post-workflow@master
        with:
          comment_tag_name: "YOUTUBE"
          feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=XXX"

Note: The link has been double tested. There is no problem there.

@cybercoder-naj cybercoder-naj added the bug Something isn't working label May 14, 2021
@gautamkrishnar
Copy link
Owner

@cybercoder-naj from the action run i can see that the stattus code is 404. It might be a problem in the google's side.
https://github.com/cybercoder-naj/cybercoder-naj/runs/2581142400?check_suite_focus=true
Screenshot 2021-05-14 at 12 02 07 PM

When i opened the url https://www.youtube.com/feeds/videos.xml?channel_id=UCPoU-LKr3XG0IujgCFFt4_A for the first time in my browsser it gave me a 404. When i reloaded the page it showed the feed.

Screenshot 2021-05-14 at 12 14 47 PM

You can report the same to google.

@gautamkrishnar
Copy link
Owner

@cybercoder-naj i also tried hitting it a couple of times via CURL, this was the status:
Screenshot 2021-05-14 at 12 22 22 PM

As you can see there are a lots of 404 and 500 coming from the google's end.

@gautamkrishnar gautamkrishnar added invalid Not a bug or feature request and removed bug Something isn't working labels May 14, 2021
@gautamkrishnar gautamkrishnar pinned this issue May 14, 2021
@gautamkrishnar gautamkrishnar changed the title [Bug]: runner failed, please verify the configuration. Error 404 [Bug]: youtube runner failed, please verify the configuration. Error 404 May 14, 2021
@gautamkrishnar
Copy link
Owner

gautamkrishnar commented May 14, 2021

@cybercoder-naj looks like google fixed it. Its working fine right now. Please try re enabling the workflow.

I had released a new release with the retry feature so that the workflow will retry muliple times if the first try fials: https://github.com/gautamkrishnar/blog-post-workflow/releases/tag/1.5.6

name: YouTube Videos
on:
  schedule:
    - cron: '0 * * * *'
  workflow_dispatch:

jobs:
  update-readme-with-youtube:
    name: Update this repo's README with latest videos from YouTube
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: gautamkrishnar/blog-post-workflow@master
        with:
          comment_tag_name: "YOUTUBE"
          feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UCPoU-LKr3XG0IujgCFFt4_A"
          retry_count: 10

@gautamkrishnar gautamkrishnar unpinned this issue May 14, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
invalid Not a bug or feature request
Projects
None yet
Development

No branches or pull requests

2 participants