Explorar el Código

Merge pull request #314 from eza-community/cafk-convco-ci

ci(convco): enforce conventional commits
Christina Sørensen hace 2 años
padre
commit
4c04ce178c
Se han modificado 1 ficheros con 19 adiciones y 0 borrados
  1. 19 0
      .github/workflows/conventional-commits.yml

+ 19 - 0
.github/workflows/conventional-commits.yml

@@ -0,0 +1,19 @@
+name: Conventional Commits
+
+on:
+  push:
+    branches: [ main ]
+  pull_request:
+    branches: [ main ]
+
+jobs:
+  build:
+    name: Conventional Commits
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2
+
+      - uses: webiny/action-conventional-commits@v1.1.0
+        # optional, required for private repos
+        # with:
+        #   GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}