Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a-k-o-r-a/notion-gitlab-sync
A small script to synchronise Issues from a GitLab project to a notion database
https://github.com/a-k-o-r-a/notion-gitlab-sync
gitlab notion
Last synced: about 1 month ago
JSON representation
A small script to synchronise Issues from a GitLab project to a notion database
- Host: GitHub
- URL: https://github.com/a-k-o-r-a/notion-gitlab-sync
- Owner: A-K-O-R-A
- Created: 2023-11-07T18:39:13.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-06T10:43:11.000Z (3 months ago)
- Last Synced: 2024-10-13T03:23:40.734Z (2 months ago)
- Topics: gitlab, notion
- Language: JavaScript
- Homepage:
- Size: 349 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# GitLab Notion Issue sync
This projects mirrors the issues from a gitlab project to a notion database. Every time the script is run it will fetch all issues, milestones and labels from the project and insert or update ( depending on which one is necessary ) entries in the notion database.## Setup
## Notion### Create an integration
Go to https://www.notion.so/my-integrations and create an integration that has the "Read content", "Update content" and "Insert content" capabilities. Copy it's secret and add it to your `.env` file on a new line.`NOTION_KEY=`
### Setup your Notion database
To run this script you will need to create a database in notion if you don't have one yet. The database needs to have the following columns:
| Name | Type |
| - | - |
| id | text |
| open | checkbox |
| title | title |
| assignees | text |
| timespan | date |
| last_updated_at | date |
| tags | multi_select |
| milestones | multi_select |> NOTE: The order is not important but the casing is
For the following steps make sure that you open the database page not the page where the database is inlined. If the database is inlined in curent page you can hover with your mouse over the table and then click on the 3 dots that appear on the right side of the table name and click "Open as full page"
![Screenshot](./assets/Screenshot_20241006_122851.png)Next add your integration to the database, this can be done throught the menu in the top right corner of the database view.
![Screenshot](./assets/Screenshot_20231111_122710.png)Then click the "Share" button in the top right corner and copy the link. Your link should look something like this:
https://www.notion.so/abcdef?v=123456e
In this example the database id would be `abcdef`. Add this id to your `.env` file on a new line.
`NOTION_DATABASE_ID=`
## GitLab
### Personal Access Token
To fetch the issues, milestones and labels from your project this script requires a gitlab Personal Access Token for your gitlab instance that has the `read_api` scope. You can create one by going to your user settings under the category "Access Tokens" and clicking "Add new token". Again add this id to your `.env` file on a new line.
`GITLAB_TOKEN=`
### Project ID
The gitlab Project ID can be found on its overview page ( https://git.example.com/group_name/project_name ) right below the project name.
`GITLAB_PROJECT_ID=`
### GitLab domain
This script is designed to work with custom GitLab instances so you also need to add your domain to the `.enn` file.
`GITLAB_DOMAIN=`
## .env File
In the end your `.env` file should look like this.
```env
NOTION_KEY=
NOTION_DATABASE_ID=GITLAB_TOKEN=
GITLAB_PROJECT_ID=
GITLAB_DOMAIN=
```## Running the script
> NOTE: This script is designed to work with NodeJS Version 16 or higher.
```
npm install
node index.js
```## Troubleshooting
If the script throws an error most of the time the easiest solution is to just delete all entries in the table on notion.If the error still persist the second most common issue is caused by all tags or milestones still remaining in notion, to fix this you can edit the notion database by clicking the three dots on the top right corner of the view. Click on "Properties" and then first select "milestones" and remove all the options, then do the same thing for the "tags" property.