Skip to content
Open
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
25 changes: 25 additions & 0 deletions .github/workflows/auto-semver.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Auto Semantic Version

on:
push:
branches: [main]

jobs:
tag:
name: Tag
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
fetch-depth: 0
fetch-tags: true

- name: Increment version and create tag
id: create-tag
uses: corvexai/gha-auto-semver@fe3a7f81000b897d3f7bfdedd6edc7334765ce16 # v0.1.2
with:
create_tag: true
initial_version: 0.1.0
22 changes: 22 additions & 0 deletions .github/workflows/commit-message-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Commit Message Check

on:
pull_request:
types:
- edited
- opened
- reopened
- synchronize

jobs:
commit-message-check:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check commit message
uses: corvexai/gha-commit-message-check@9af3a50e9d082f3c865b5563d543c928504d26e2 # v0.1.0
with:
mode: strict
check_title: true
check_commits: false
19 changes: 19 additions & 0 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Python CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
ci:
name: Python CI
uses: corvexai/gha-python-ci/.github/workflows/ci.yml@cb035fd6749c198adb47fc22a50c03839f4f5319 # v0.1.0
with:
workflow_ref: cb035fd6749c198adb47fc22a50c03839f4f5319
python_version: '3.12'
secrets: inherit
permissions:
contents: read
pull-requests: write
Loading