|
name: Standards Check
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
commit-message:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Lint commit message / PR title
|
|
env:
|
|
COMMIT_LINT_REQUIRE_EMOJI: "1"
|
|
run: |
|
|
python3 .gitea/ci/commit_message_lint.py
|
|
|