Ver a proveniência

ci: use GitHub Action to validate semantic commits

pull/265/head
Jérôme Deuchnord há 3 anos
ascendente
cometimento
c7af309cf6
1 ficheiros alterados com 17 adições e 0 eliminações
  1. +17
    -0
      .github/workflows/semantic-pr.yml

+ 17
- 0
.github/workflows/semantic-pr.yml Ver ficheiro

@@ -0,0 +1,17 @@
name: "Semantic Pull Request"

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

jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Carregando…
Cancelar
Guardar