diff --git a/.github/workflows/commitmsg-conform.yml b/.github/workflows/commitmsg-conform.yml new file mode 100644 index 0000000..c569f51 --- /dev/null +++ b/.github/workflows/commitmsg-conform.yml @@ -0,0 +1,15 @@ +name: Commit Message Conformance + +on: + pull_request: {} + +permissions: + statuses: write + checks: write + contents: read + pull-requests: read + +jobs: + commitmsg-conform: + uses: actionsforge/actions/.github/workflows/commitmsg-conform.yml@main + diff --git a/.github/workflows/ci.yml b/.github/workflows/markdown-lint.yml similarity index 51% rename from .github/workflows/ci.yml rename to .github/workflows/markdown-lint.yml index 2698dc4..35c960c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/markdown-lint.yml @@ -1,4 +1,4 @@ -name: CI +name: Markdown Lint on: pull_request: {} @@ -10,5 +10,6 @@ permissions: pull-requests: read jobs: - pr-checks: - uses: actionsforge/actions/.github/workflows/astro-docs-pr-checks.yml@main + markdown-lint: + uses: actionsforge/actions/.github/workflows/markdown-lint.yml@main +