Explorar el Código

ci: use GitHub Action to validate semantic commits

tags/v0.10.11
Jérôme Deuchnord hace 2 años
committed by Jérôme Deuchnord
padre
commit
83d9cf70ac
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