Skip to content

Commit

Permalink
refactor: updated name
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke committed Oct 23, 2024
1 parent 66606e7 commit 8f5168a
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/actions/bundle-gh-page/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
fi
shell: bash
- name: 📥 Get gh-pages tar
run: wget -q https://github.com/dbsystel/cicd-playground/tarball/gh-pages
run: wget -q https://github.com/db-ui/cicd-playground/tarball/gh-pages
shell: bash
- name: 📦 Unpack Tar
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: ./.github/actions/npm-cache

- name: 📥 Get gh-pages tar
run: wget -q https://github.com/dbsystel/cicd-playground/tarball/gh-pages
run: wget -q https://github.com/db-ui/cicd-playground/tarball/gh-pages
- name: ➕ Create public dir
run: mkdir public
- name: 📦 Unpack Tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
- name: ZAP Scan
uses: zaproxy/[email protected]
with:
target: 'https://api.github.com/repos/dbsystel/cicd-playground/branches'
target: 'https://api.github.com/repos/db-ui/cicd-playground/branches'
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbsystel/cicd-playground.git"
"url": "git+https://github.com/db-ui/cicd-playground.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dbsystel/cicd-playground/issues"
"url": "https://github.com/db-ui/cicd-playground/issues"
},
"homepage": "https://github.com/dbsystel/cicd-playground#readme",
"homepage": "https://github.com/db-ui/cicd-playground#readme",
"workspaces": [
"packages/*"
],
Expand Down
6 changes: 3 additions & 3 deletions packages/ci-cd-abcd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbsystel/cicd-playground.git"
"url": "git+https://github.com/db-ui/cicd-playground.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dbsystel/cicd-playground/issues"
"url": "https://github.com/db-ui/cicd-playground/issues"
},
"homepage": "https://github.com/dbsystel/cicd-playground#readme",
"homepage": "https://github.com/db-ui/cicd-playground#readme",
"devDependencies": {
"typescript": "4.9.5"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/ci-cd-pages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbsystel/cicd-playground.git"
"url": "git+https://github.com/db-ui/cicd-playground.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dbsystel/cicd-playground/issues"
"url": "https://github.com/db-ui/cicd-playground/issues"
},
"homepage": "https://github.com/dbsystel/cicd-playground#readme",
"homepage": "https://github.com/db-ui/cicd-playground#readme",
"devDependencies": {
"vite": "^4.1.1"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/ci-cd-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbsystel/cicd-playground.git"
"url": "git+https://github.com/db-ui/cicd-playground.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dbsystel/cicd-playground/issues"
"url": "https://github.com/db-ui/cicd-playground/issues"
},
"homepage": "https://github.com/dbsystel/cicd-playground#readme"
"homepage": "https://github.com/db-ui/cicd-playground#readme"
}
6 changes: 3 additions & 3 deletions playground/pg-simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbsystel/cicd-playground.git"
"url": "git+https://github.com/db-ui/cicd-playground.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dbsystel/cicd-playground/issues"
"url": "https://github.com/db-ui/cicd-playground/issues"
},
"homepage": "https://github.com/dbsystel/cicd-playground#readme",
"homepage": "https://github.com/db-ui/cicd-playground#readme",
"devDependencies": {
"vite": "^4.1.1"
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/cleanup-gh-pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const TAG = 'cleanup-gh-pages:';
const run = async () => {
if (fs.existsSync('public/review')) {
const data = await got(
'https://api.github.com/repos/dbsystel/cicd-playground/branches'
'https://api.github.com/repos/db-ui/cicd-playground/branches'
).json();
if (data?.length > 0) {
const dirsToDelete = fs
Expand Down

0 comments on commit 8f5168a

Please sign in to comment.