Steve Riesenberg 1 рік тому
батько
коміт
b5370b8ad4
1 змінених файлів з 11 додано та 3 видалено
  1. 11 3
      .github/workflows/deploy-docs.yml

+ 11 - 3
.github/workflows/deploy-docs.yml

@@ -1,14 +1,22 @@
 name: Deploy Docs
+
 on:
   push:
-    tags: '**'
+    branches-ignore:
+      - "gh-pages"
+      - "dependabot/**"
+      - "0.4.x"
+      - "1.0.x"
+      - "1.1.x"
+    tags:
+      - "**"
   repository_dispatch:
     types: request-build-reference # legacy
-  #schedule:
-  #- cron: '0 10 * * *' # Once per day at 10am UTC
   workflow_dispatch:
+
 permissions:
   actions: write
+
 jobs:
   build:
     runs-on: ubuntu-latest