Skip to content

Commit 847884c

Browse files
Merge branch 'next' of https://github.com/Geode-solutions/OpenGeodeWeb-Front into feat/toggle_visibility-in_hybrid_viewer
2 parents ead244c + 3d2b7cc commit 847884c

18 files changed

+181
-91
lines changed

.github/workflows/Branch-protection.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/CICD.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/workflows/deploy.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Deploy
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
deploy:
8+
uses: Geode-solutions/actions/.github/workflows/js-deploy.yml@master
9+
with:
10+
repos: ${{ vars.REPOS }}
11+
secrets: inherit

.github/workflows/merge_request.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Merge request
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
release:
8+
uses: Geode-solutions/actions/.github/workflows/js-merge-request.yml@master
9+
secrets: inherit

.github/workflows/pr_update.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Pull request
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened]
6+
branches:
7+
- master
8+
9+
jobs:
10+
update-branch:
11+
uses: Geode-solutions/actions/.github/workflows/update-branch.yml@master

.github/workflows/prepare_deploy.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Prepare deploy
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
prepare:
8+
uses: Geode-solutions/actions/.github/workflows/js-prepare-deploy.yml@master
9+
secrets: inherit

.github/workflows/prepare_pr.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- master
7+
- next
8+
9+
jobs:
10+
test:
11+
uses: Geode-solutions/actions/.github/workflows/js-test.yml@master
12+
with:
13+
repos: ${{ vars.REPOS }}
14+
secrets: inherit

.github/workflows/test_pr.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Test PR
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
6+
7+
jobs:
8+
test:
9+
uses: Geode-solutions/actions/.github/workflows/js-test-pr.yml@master
10+
with:
11+
repos: ${{ vars.REPOS }}
12+
secrets: inherit

.releaserc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
plugins: [
77
'@semantic-release/commit-analyzer',
88
'@semantic-release/release-notes-generator',
9-
'@semantic-release/github',
10-
'@semantic-release/npm'
9+
'@semantic-release/github'
1110
]
1211
}

0 commit comments

Comments
 (0)