Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
feat: initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
AlenkaBavdaz committed Jan 26, 2024
1 parent 6e68418 commit d1be1cc
Show file tree
Hide file tree
Showing 27 changed files with 7,785 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/auto-update-scheduled-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This is autogenerated - do not touch!
name: Auto-update scheduled version check

on:
schedule:
- cron: '0 21 * * 1-4'
repository_dispatch:
types: [autoupdate]
workflow_dispatch:

jobs:
ci:
uses: lundalogik/lime-workflows/.github/workflows/auto-update-scheduled-check.yml@v2
secrets: inherit
with:
python_version: 3.11
poetry_version: 1.3.2
13 changes: 13 additions & 0 deletions .github/workflows/dispatch-deployment-event.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This is autogenerated - do not touch!
name: Dispatch Deployment Event

on:
repository_dispatch:
types: [add-sqs-queue]

run-name: "${{ github.event.client_payload.env }}: ${{ github.event.client_payload.image_tag }} Plan ${{ github.event.client_payload.deployplan_id }}"

jobs:
dispatch:
uses: lundalogik/lime-workflows/.github/workflows/dispatch-deployment-event.yml@v2
secrets: inherit
29 changes: 29 additions & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This is autogenerated - do not touch!
name: Pull Request Checks
on:
pull_request:

jobs:
python:
strategy:
matrix:
python_test_os: [ ubuntu-latest ]
python-version: [ 3.7, 3.11 ]
poetry-version: [ 1.3.2 ]
uses: lundalogik/lime-workflows/.github/workflows/pr-checks-python.yml@v2
secrets: inherit
with:
python_test_os: ${{ matrix.python_test_os }}
test_python_version: ${{ matrix.python-version }}
poetry_version: ${{ matrix.poetry-version }}

ci:
uses: lundalogik/lime-workflows/.github/workflows/pr-checks.yml@v2
secrets: inherit
with:
frontend_test_os: ubuntu-latest

automerge:
uses: lundalogik/lime-workflows/.github/workflows/automerge.yml@v2
secrets: inherit
needs: [ python, ci ]
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This is autogenerated - do not touch!
name: Release
on:
push:
branches:
- main
- master
- "*[0-9].*[0-9].x"
- "*[0-9].x.x"
- dev
- pre
- alpha
- beta

jobs:
release:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ 3.11 ]
poetry-version: [ 1.3.2 ]
uses: lundalogik/lime-workflows/.github/workflows/release.yml@v2
secrets: inherit
with:
os: ${{ matrix.os }}
solution_name: "solution-verheij-metaal"
python_version: ${{ matrix.python-version }}
poetry_version: ${{ matrix.poetry-version }}
imagebaker_build_command: "lime-imagebaker appstack build --python3_11"
image: true
15 changes: 15 additions & 0 deletions .github/workflows/update-workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This is auto-generated - do not touch!
name: Update Workflows

on:
repository_dispatch:
types: [update-workflow]
workflow_dispatch:

jobs:
upgrade:
uses: lundalogik/lime-workflows/.github/workflows/update-workflows.yml@v2
secrets: inherit
with:
os: ubuntu-latest
python_version: 3.11
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
*.egg*
tags
venv
.venv
build/
dist/
__pycache__
**/*.pyc
**/.idea
.pytest_cache/
docker-compose.override.yml
.stencil/
node_modules
.htmlcov
pip-wheel-metadata
.vscode
.coverage
.lime
.env
*.bak
celerybeat*.*
ldc.reg
Loading

0 comments on commit d1be1cc

Please sign in to comment.