Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Next #65

Merged
merged 2 commits into from
May 25, 2023
Merged

Next #65

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
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
4 changes: 2 additions & 2 deletions bindings/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
#
# pip-compile bindings/python/requirements.in
#
opengeode-core==14.*,>=14.1.0
opengeode-core==14.*,>=14.1.9
# via
# -r bindings/python/requirements.in
# opengeode-geosciences
# opengeode-geosciencesio
# opengeode-io
opengeode-geosciences==7.*,>=7.0.7
opengeode-geosciences==7.*,>=7.0.8
# via
# -r bindings/python/requirements.in
# opengeode-geosciencesio
Expand Down