Initial commit

This commit is contained in:
2024-03-15 08:59:38 +01:00
commit ca6997e49a
8 changed files with 1020 additions and 0 deletions

27
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View File

@@ -0,0 +1,27 @@
## PR type (check all applicable)
- [ ] ` feat ` :sparkles: features
- [ ] ` fix ` :bug: bugfixes
- [ ] ` chore ` :ticket: chores
- [ ] `refactor` :package: code refactoring
- [ ] ` style ` :gem: style
- [ ] ` docs ` :book: documentation changes
- [ ] ` perf ` :rocket: performance improvements
- [ ] ` test ` :rotating_light: tests
- [ ] ` build ` :construction_worker: build
- [ ] ` ci ` :robot: continuous integration
- [ ] ` revert ` :back: reverts
## PR description
This PR:
-
## Related Tickets
- related issue #
- closes #
## Instructions, Screenshots
_replace this line with instructions (screenshots) on how to test, use your changes_

68
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,68 @@
name: Bump version
on:
workflow_dispatch:
inputs:
version:
type: string
description: 'new tag number'
required: true
description:
type: string
descirption: 'version description'
required: true
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
jobs:
create_version:
runs-on: ubuntu-latest
name: Create version from tag
steps:
- name: GH_TOKEN
if: env.GH_TOKEN == ''
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: echo "GH_TOKEN=${GITHUB_TOKEN}" >> $GITHUB_ENV
- name: 🔀 checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: "${{ env.GH_TOKEN }}"
- name: 🐍 python
uses: actions/setup-python@v2
with:
python-version: 3.11
cache: pip
- name: node
uses: actions/setup-node@v2
continue-on-error: true
with:
node-version: 16
cache: npm
- name: 📦 install required utilities
run: |
pip install git-cliff --break-system-packages
npm install -g release-it
- name: configure git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: 📝 bump version
run: |
git-cliff -s header -t ${{ github.event.inputs.version }} -u -o body.md
release-it ${{ github.event.inputs.version }}
- name: create release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
name: simulat ${{ github.event.inputs.version }} - ${{ github.event.inputs.description}}
tag_name: ${{ github.event.inputs.version }}
body_path: body.md
draft: true
- name: ✅ done
run: |
rm body.md