Skip to content
Closed
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
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/py-deploy.yml@master
with:
npm: true
secrets: inherit

9 changes: 9 additions & 0 deletions .github/workflows/merge_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Merge request

on:
workflow_dispatch:

jobs:
release:
uses: Geode-solutions/actions/.github/workflows/py-merge-request.yml@master
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/pr_update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Pull request

on:
pull_request:
types: [opened, reopened]
branches:
- master

jobs:
update-branch:
uses: Geode-solutions/actions/.github/workflows/update-branch.yml@master
9 changes: 9 additions & 0 deletions .github/workflows/prepare_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Prepare deploy

on:
workflow_dispatch:

jobs:
prepare:
uses: Geode-solutions/actions/.github/workflows/py-prepare-deploy.yml@master
secrets: inherit
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
- next

jobs:
test:
uses: Geode-solutions/actions/.github/workflows/py-test.yml@master
with:
npm: true
secrets: inherit
12 changes: 12 additions & 0 deletions .github/workflows/test_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Test PR

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
test:
uses: Geode-solutions/actions/.github/workflows/py-test-pr.yml@master
with:
npm: true
secrets: inherit
Loading
Loading