Skip to content

Commit

Permalink
consoleRemove
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiMarin15 committed Sep 23, 2023
1 parent cc0b452 commit 8f7bddf
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 38 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/update-notion.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Notion Update CI

on:
push:
branches: ["development", "main", "feature/notion-db-automation"]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
defaults:
run:
working-directory: ./scripts
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"

- run: npm ci
- run: |
touch .env.local
echo NOTION_INTEGRATION_SECRET=${{ secrets.NOTION_INTEGRATION_SECRET }} >> .env.local
echo NOTION_LEADS_DEVDB=${{ secrets.NOTION_LEADS_DEVDB }} >> .env.local
echo NOTION_LEADS_PRODDB=${{ secrets.NOTION_LEADS_PRODDB }} >> .env.local
- run: npm run build --if-present
- run: npm run start
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/node_modules
/.pnp
.pnp.js
scripts/node_modules

# testing
/coverage
Expand Down
78 changes: 40 additions & 38 deletions scripts/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const { Client } = require("@notionhq/client");
require("dotenv").config({
path: ".env.local",
path: "./.env.local",
});

console.log(process.env.NOTION_LEADS_PRODDB);
console.log(process.env.NOTION_LEADS_DEVDB);
// Initializing a client
const notion = new Client({
auth: process.env.NOTION_INTEGRATION_SECRET,
Expand All @@ -26,49 +27,46 @@ async function updateDb(sourceDbId, destDbId) {

for (const item of source.results) {
const properties = {
Name: {
title: [
{
text: {
content: item.properties.Name.title[0].text.content,
},
Name: {
title: [
{
text: {
content: item.properties.Name.title[0].text.content,
},
],
},

Position: {
select: {
name: item.properties.Position.select.name,
},
},

Avatar: {
files: [{
name: item.properties.Avatar.files[0]?.name ?? "test.jpg",
type: item.properties.Avatar.files[0]?.type,
file: {
url: item.properties.Avatar.files[0]?.file.url,

}
}]
}
}
],
},

if(item.properties.Avatar.files.length === 0) {
Position: {
select: {
name: item.properties.Position.select.name,
},
},

delete properties.Avatar
Avatar: {
files: [
{
name: item.properties.Avatar.files[0]?.name ?? "test.jpg",
type: item.properties.Avatar.files[0]?.type,
file: {
url: item.properties.Avatar.files[0]?.file.url,
},
},
],
},
};


}
if (item.properties.Avatar.files.length === 0) {
delete properties.Avatar;
}

await notion.pages.create({
parent: {
type: "database_id",
database_id: destDbId,
},

properties

properties,
});
}
}
Expand All @@ -78,12 +76,16 @@ async function queryDb(databaseId) {
database_id: databaseId,
});

console.log(response.results[response.results.length-1].properties.Avatar.files[0].name)
// console.log(response.results[response.results.length-1].properties.Avatar.files[0].name)
return response;
}

deleteRecords(process.env.NOTION_LEADS_PRODDB);

// queryDb(`bbbd878ff5f6489c8c39e6f54166d31e`)
(async () => {
await deleteRecords(process.env.NOTION_LEADS_PRODDB);
await updateDb(
process.env.NOTION_LEADS_DEVDB,
process.env.NOTION_LEADS_PRODDB
);
})();

updateDb(process.env.NOTION_LEADS_DEVDB, process.env.NOTION_LEADS_PRODDB)
// queryDb(`bbbd878ff5f6489c8c39e6f54166d31e`)

0 comments on commit 8f7bddf

Please sign in to comment.