{"id":25573097,"url":"https://github.com/amaziahub/pr-jukebox","last_synced_at":"2026-05-18T09:05:53.115Z","repository":{"id":278603765,"uuid":"936173376","full_name":"amaziahub/pr-jukebox","owner":"amaziahub","description":"A GitHub Action that drops a song recommendation on every PR, matching the title’s vibe! 🎶✨","archived":false,"fork":false,"pushed_at":"2025-03-04T17:18:51.000Z","size":651,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T10:28:00.522Z","etag":null,"topics":["chatops","ci-cd","developer-experience","fun","github-action","github-actions","github-actions-ci","jukebox","music","pull-request","randomizer"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amaziahub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-20T16:40:07.000Z","updated_at":"2025-03-04T17:34:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"b47e5ca5-cec8-4ba8-9d19-b76d4d8d3d07","html_url":"https://github.com/amaziahub/pr-jukebox","commit_stats":null,"previous_names":["amaziahub/pr-jukebox"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/amaziahub/pr-jukebox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amaziahub%2Fpr-jukebox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amaziahub%2Fpr-jukebox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amaziahub%2Fpr-jukebox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amaziahub%2Fpr-jukebox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amaziahub","download_url":"https://codeload.github.com/amaziahub/pr-jukebox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amaziahub%2Fpr-jukebox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33172173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T05:43:36.989Z","status":"ssl_error","status_checked_at":"2026-05-18T05:43:19.133Z","response_time":71,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chatops","ci-cd","developer-experience","fun","github-action","github-actions","github-actions-ci","jukebox","music","pull-request","randomizer"],"created_at":"2025-02-21T01:19:41.667Z","updated_at":"2026-05-18T09:05:53.075Z","avatar_url":"https://github.com/amaziahub.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PR Jukebox 🎵\nPR Jukebox is a fun GitHub Action that automatically comments with a song recommendation whenever someone opens a pull request (PR). The song is randomly selected based on keywords found in the PR title, and the action includes a link to the song on YouTube for easy listening!\n\n--- \n## Features\n* **🎶 Song Recommendations**: Automatically posts a song recommendation in the PR based on its title.\n* **🎧 YouTube Link**: The comment includes a clickable link to listen to the song on YouTube.\n* **🎤 Customizable Songs**: Add your own songs to the songs.json file and match them to keywords in PR titles.\n\n---\n## Setup\nTo set up PR Jukebox in your GitHub repository, follow these steps:\n\n### 1. Add pr-jukebox Action to Your Workflow\nCreate a new GitHub Action workflow file in your repository, or update an existing one. For example, create `.github/workflows/pr-jukebox.yml` with the following content:\n\n```yml\nname: PR Jukebox 🎵\n\non:\n  pull_request:\n    types: [opened, edited, reopened]\n\njobs:\n  pr-jukebox:\n    runs-on: ubuntu-latest\n    permissions:\n      pull-requests: write  # Allow commenting on PRs\n    steps:\n      - name: Run PR Jukebox\n        uses: amaziahub/pr-jukebox@main\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n```\nThis configuration will trigger the action every time a PR is opened, edited, or reopened.\n\n---\n\n### 2. Add Your Song List (`songs.json`)\nCreate a songs.json file in the root of your repository with a list of songs. For example:\n```json\n{\n  \"default\": {\n    \"title\": \"Bohemian Rhapsody\",\n    \"artist\": \"Queen\",\n    \"link\": \"https://www.youtube.com/watch?v=fJ9rUzIMcZQ\"\n  },\n  \"love\": {\n    \"title\": \"I Will Always Love You\",\n    \"artist\": \"Whitney Houston\",\n    \"link\": \"https://www.youtube.com/watch?v=IrZttcehxVY\"\n  },\n  \"rock\": {\n    \"title\": \"Stairway to Heaven\",\n    \"artist\": \"Led Zeppelin\",\n    \"link\": \"https://www.youtube.com/watch?v=QkF3oxziUI4\"\n  }\n}\n```\n\n---\n\n### 3. Add the Action to Your Repository\nOnce the workflow and `songs.json` are in place, commit and push the changes to your repository.\n\n```bash\ngit add .github/workflows/pr-jukebox.yml songs.json\ngit commit -m \"Set up PR Jukebox Action\"\ngit push origin main\n```\n\n---\n\n### 4. Test It Out\nOpen a new PR in your repository and see PR Jukebox in action! It will comment with a song recommendation based on the PR title.\n\n---\n\n### Customizing the Song List\n* **Add Songs**: You can add more songs to the songs.json file by including new keyword-song pairs.\n* **Change Keywords**: The keywords are matched to the PR title, so feel free to update them to suit your needs.\n* **Default Song**: If no match is found, the action will post a default song (e.g., \"Bohemian Rhapsody\").\n\n---\n\n# License\nThis project is licensed under the MIT License.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famaziahub%2Fpr-jukebox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famaziahub%2Fpr-jukebox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famaziahub%2Fpr-jukebox/lists"}