Simon Pistache 0bbdb9ef66 feat(figma): Ajoute quelques rendus pour les groupes (#1)
Reviewed-on: #1
Co-authored-by: Simon Pistache <simon.priet@gmail.com>
Co-committed-by: Simon Pistache <simon.priet@gmail.com>
2025-04-14 14:31:08 +02:00

21 lines
668 B
YAML

name: Conventional Commit
run-name: Enforce that PR name follow Conventional Commits
on:
pull_request:
types: [opened, synchronize, reopened, edited]
jobs:
Validate:
runs-on: ubuntu-latest
steps:
- run: echo "Here is the Token ${{ gitea.token }}"
- run: echo "Here is the Event that triggered this workflow ${{ gitea.event_name }}"
- run: echo "Here is a secret ${{ secrets.RELEABOT_TOKEN }}"
- name: PR Conventional Commit Validation
uses: ytanikin/pr-conventional-commits@1.4.1
with:
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
add_label: 'false'