We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fb5727 commit 905a68dCopy full SHA for 905a68d
1 file changed
.github/workflows/validate.yaml
@@ -14,8 +14,23 @@ jobs:
14
contains(github.event.comment.body, '/full-validation')
15
)
16
steps:
17
- - name: Checkout
+ - name: Fetch Branch Name
18
+ id: fetch-branch-name
19
+ uses: xt0rted/pull-request-comment-branch@v2
20
+
21
+ - name: Check out code from ${{ steps.fetch-branch-name.outputs.head_ref }}
22
uses: actions/checkout@v3
23
+ with:
24
+ ref: ${{ steps.fetch-branch-name.outputs.head_ref }}
25
26
+ - name: Post response to GitHub PR
27
+ uses: mshick/add-pr-comment@v2
28
29
+ message: |
30
+ Action started. Click [here](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) to see the status.
31
32
+ # - name: Checkout
33
+ # uses: actions/checkout@v3
34
35
- name: Validate
36
run: |
@@ -31,19 +46,7 @@ jobs:
46
fi
47
48
-
37
38
39
40
41
42
43
44
45
49
50
51
52
0 commit comments