Skip to content

Commit

Permalink
Change cd-collection to music-collection (#135)
Browse files Browse the repository at this point in the history
This change is necessary because I changed the name of the source repository to include vinyl records in addition to CDs.
  • Loading branch information
josh-wong authored Nov 5, 2024
1 parent fcec0bb commit 63c1ae9
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 44 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/auto-create-pr-cd-component.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# This workflow auto-creates PRs for docs that have been updated in my "cd-collection" repository.
name: ✨ Auto-create PR - cd-collection docs
# This workflow auto-creates PRs for docs that have been updated in my "music-collection" repository.
name: ✨ Auto-create PR - music-collection docs

on:
push:
branches:
- cd-collection/**
- music-collection/**

jobs:
create-pull-request:
Expand All @@ -16,13 +16,13 @@ jobs:
script: |
const { repo, owner } = context.repo;
const result = await github.rest.pulls.create({
title: 'AUTO: Docs sync - `cd-collection`',
title: 'AUTO: Docs sync - `music-collection`',
owner,
repo,
head: '${{ github.ref_name }}',
base: 'main',
body: [
'This is an automated pull request (PR) to sync changes to docs in the [josh-wong/cd-collection](https://github.com/josh-wong/cd-collection) repo to this repo.',
'This is an automated pull request (PR) to sync changes to docs in the [josh-wong/music-collection](https://github.com/josh-wong/music-collection) repo to this repo.',
'',
'Before merging this PR, confirm the following:',
'',
Expand Down
4 changes: 2 additions & 2 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ const config = {
},
{
type: 'doc',
label: 'CD collection💿',
docId: 'cd-collection/index',
label: 'Music collection💿',
docId: 'music-collection/index',
},
{
type: 'doc',
Expand Down
74 changes: 37 additions & 37 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,48 +74,48 @@ const sidebars = {
{
type: 'doc',
label: 'CD collection',
id: 'cd-collection/index',
id: 'music-collection/index',
},
{
'A-Z by artist': [
'cd-collection/a',
'cd-collection/b',
'cd-collection/c',
'cd-collection/d',
'cd-collection/e',
'cd-collection/f',
'cd-collection/g',
'cd-collection/h',
'cd-collection/i',
'cd-collection/j',
'cd-collection/k',
'cd-collection/l',
'cd-collection/m',
'cd-collection/n',
'cd-collection/o',
'cd-collection/p',
'cd-collection/q',
'cd-collection/r',
'cd-collection/s',
'cd-collection/t',
'cd-collection/u',
'cd-collection/v',
'cd-collection/w',
'cd-collection/x',
'cd-collection/y',
'cd-collection/z',
'music-collection/a',
'music-collection/b',
'music-collection/c',
'music-collection/d',
'music-collection/e',
'music-collection/f',
'music-collection/g',
'music-collection/h',
'music-collection/i',
'music-collection/j',
'music-collection/k',
'music-collection/l',
'music-collection/m',
'music-collection/n',
'music-collection/o',
'music-collection/p',
'music-collection/q',
'music-collection/r',
'music-collection/s',
'music-collection/t',
'music-collection/u',
'music-collection/v',
'music-collection/w',
'music-collection/x',
'music-collection/y',
'music-collection/z',
],
'0-9 by artist': [
'cd-collection/0',
'cd-collection/1',
'cd-collection/2',
'cd-collection/3',
'cd-collection/4',
'cd-collection/5',
'cd-collection/6',
'cd-collection/7',
'cd-collection/8',
'cd-collection/9',
'music-collection/0',
'music-collection/1',
'music-collection/2',
'music-collection/3',
'music-collection/4',
'music-collection/5',
'music-collection/6',
'music-collection/7',
'music-collection/8',
'music-collection/9',
],
},
],
Expand Down

0 comments on commit 63c1ae9

Please sign in to comment.