Skip to content
This repository was archived by the owner on Apr 29, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/release-current-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Release Current Version

on:
push:
branches: [ master, main ]

jobs:
Run:
uses: polarityio/polarity-github-actions/.github/workflows/release-server-versions-for-int-store.yml@master
# with:
# use-integration-development-checklist: false
23 changes: 23 additions & 0 deletions .github/workflows/run-int-dev-checklist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run Integration Development Checklist

on:
pull_request:
branches: [ master, main, develop ]

jobs:
run-integration-development-checklist:
runs-on: ubuntu-latest
container: 'centos:7'

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- name: Test NPM Install
id: test-npm-install
run: |
npm ci
- name: Polarity Integration Development Checklist
id: int-dev-checklist
uses: polarityio/polarity-integration-development-checklist@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85 changes: 85 additions & 0 deletions config/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{
"acronym": "Pool",
"entityTypes": [
"string"
],
"logging": {
"level": "info"
},
"styles": [
"./styles/poolparty.less"
],
"block": {
"component": {
"file": "./components/poolparty.js"
},
"template": {
"file": "./templates/poolparty.hbs"
}
},
"options": [
{
"key": "url",
"name": "Concept URL",
"description": "",
"default": "",
"type": "text",
"userCanEdit": true,
"adminOnly": false
},
{
"key": "project",
"name": "Project Name",
"description": "",
"default": "",
"type": "text",
"userCanEdit": true,
"adminOnly": false
},
{
"key": "username",
"name": "Username",
"description": "PoolParty Account Username",
"default": "",
"type": "text",
"userCanEdit": true,
"adminOnly": false
},
{
"key": "password",
"name": "password",
"description": "PoolParty Account Password",
"default": "",
"type": "password",
"userCanEdit": true,
"adminOnly": false
},
{
"key": "showBroaderConcepts",
"name": "Show Broader Concepts",
"description": "If checked, the integration will show broader concepts",
"default": true,
"type": "boolean",
"userCanEdit": true,
"adminOnly": false
},
{
"key": "showNarrowerConcepts",
"name": "Show Narrower Concepts",
"description": "If checked, the integration will show narrower concepts",
"default": true,
"type": "boolean",
"userCanEdit": false,
"adminOnly": true
},
{
"key": "showRelatedConcepts",
"name": "Show Related Concepts",
"description": "If checked, the integration will show related concepts",
"default": true,
"type": "boolean",
"userCanEdit": false,
"adminOnly": true
}
]
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"main": "./integration.js",
"name": "PoolParty",
"version": "1.1.2-beta",
"main": "./integration.js",
"description": "PoolParty Semantic Suite taxonomy SPARQL lookups.",
"version": "1.1.1-beta",
"private": true,
"dependencies": {
"request": "^2.75",
"lodash": "^4.16",
"async": "^2.0"
}
}
}