We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b4a82a commit a8592e0Copy full SHA for a8592e0
1 file changed
.github/workflows/dev_deployment.yml
@@ -2,6 +2,8 @@ name: Docs Dev Deployment
2
on:
3
push:
4
branches: ['dev']
5
+ pull_request:
6
+ branches: ['dev']
7
workflow_dispatch:
8
schedule:
9
- cron: '*/30 * * * *'
@@ -26,8 +28,14 @@ jobs:
26
28
uses: actions/checkout@v3
27
29
with:
30
ref: dev
31
+ fetch-depth: 0
32
submodules: true
33
34
+ - name: Verify branch
35
+ run: |
36
+ echo "Current branch: $(git rev-parse --abbrev-ref HEAD)"
37
+ echo "GitHub ref: ${{ github.ref }}"
38
+
39
- name: Configure AWS credentials
40
uses: aws-actions/configure-aws-credentials@v1-node16
41
0 commit comments