Skip to content

Commit ee65097

Browse files
committed
Prevent actions from being trigger by any push
1 parent 24da29c commit ee65097

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/vr-foraging-cicd.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ on:
44
workflow_dispatch:
55
pull_request:
66
push:
7-
branches: ['*']
7+
branches:
8+
- main
9+
- dev*
10+
- release*
811
release:
912
types: [ published ]
1013

@@ -184,6 +187,7 @@ jobs:
184187
# │ │
185188
# ╚─────────────────────────╝
186189
build-docs:
190+
name: Build and deploy documentation to GitHub Pages
187191
runs-on: ubuntu-latest
188192
needs: github-rc-release
189193
if: github.ref == 'refs/heads/main' && github.event_name == 'push'

0 commit comments

Comments
 (0)