This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
feat(arbitration): improve lua prototype #750
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Conventional commit check | |
on: [push] | |
jobs: | |
commit_messages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Conventional commit check | |
id: conventional_commit_check | |
uses: cocogitto/cocogitto-action@v3 | |
with: | |
check-latest-tag-only: true | |
- name: Install Lua | |
uses: leafo/gh-actions-lua@v10 | |
- name: Check scopes | |
run: | | |
lua .github/.check_scopes.lua |