Skip to content

Commit

Permalink
Merge branch 'master' into fix/brepblocktopofreeline
Browse files Browse the repository at this point in the history
  • Loading branch information
panquez committed May 25, 2023
2 parents 52f90a2 + f255167 commit 75e6a0e
Show file tree
Hide file tree
Showing 9 changed files with 62 additions and 109 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/CD.yml

This file was deleted.

56 changes: 0 additions & 56 deletions .github/workflows/CI.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/CI_schedule.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Deploy

on:
workflow_dispatch:

jobs:
deploy:
uses: Geode-solutions/actions/.github/workflows/deploy.yml@master
with:
name: OPENGEODE_INSPECTOR
repos: OpenGeode;OpenGeode-IO;OpenGeode-Geosciences;OpenGeode-GeosciencesIO
secrets: inherit
2 changes: 2 additions & 0 deletions .github/workflows/manual_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ on:
jobs:
release:
uses: Geode-solutions/actions/.github/workflows/trigger-release.yml@master
with:
branch: next
secrets: inherit
9 changes: 9 additions & 0 deletions .github/workflows/prepare.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Prepare

on:
workflow_dispatch:

jobs:
prepare:
uses: Geode-solutions/actions/.github/workflows/prepare.yml@master
secrets: inherit
20 changes: 20 additions & 0 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Schedule

on:
schedule:
- cron: 0 0 * * *

jobs:
schedule:
uses: Geode-solutions/actions/.github/workflows/schedule.yml@master
strategy:
matrix:
config:
- {branch: next, slack: "SLACK_WEBHOOK_URL"}
- {branch: master, slack: "SLACK_ECOSYSTEM"}
with:
repos: OpenGeode;OpenGeode-IO;OpenGeode-Geosciences;OpenGeode-GeosciencesIO
branch: ${{ matrix.config.branch }}
secrets:
TOKEN: ${{ secrets.TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets[matrix.config.slack] }}
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test

on:
push:
branches-ignore:
- master

jobs:
test:
uses: Geode-solutions/actions/.github/workflows/test.yml@master
with:
name: OPENGEODE_INSPECTOR
repos: OpenGeode;OpenGeode-IO;OpenGeode-Geosciences;OpenGeode-GeosciencesIO
secrets: inherit
6 changes: 5 additions & 1 deletion .releaserc
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"plugins": [
branches: [
{ name: "master" },
{ name: "next", channel: "next", prerelease: "rc" }
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/github'
Expand Down

0 comments on commit 75e6a0e

Please sign in to comment.