Explorar el Código

ci: use GitHub Action to validate semantic commits

pull/265/head
Jérôme Deuchnord hace 3 años
padre
commit
c7af309cf6
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  1. +17
    -0
      .github/workflows/semantic-pr.yml

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

@@ -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 }}

Cargando…
Cancelar
Guardar