File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change
1
+ qatest.yaml - text eol =crlf
Original file line number Diff line number Diff line change 1
1
name : Run QA Test # Runs automated tests on a self-hosted QA machine
2
+ permissions :
3
+ contents : read
4
+ # pull-requests: write # maybe need to re-add this later
2
5
3
6
on :
4
7
workflow_run :
@@ -15,11 +18,14 @@ jobs:
15
18
runs-on : ubuntu-latest
16
19
steps :
17
20
- name : Debug Workflow Variables
21
+ env :
22
+ HEAD_BRANCH : ${{ github.event.workflow_run.head_branch }}
23
+ HEAD_COMMIT_MSG : ${{ github.event.workflow_run.head_commit.message }}
18
24
run : |
19
25
echo "Workflow Conclusion: ${{ github.event.workflow_run.conclusion }}"
20
- echo "Workflow Head Branch: ${{ github.event.workflow_run.head_branch }} "
26
+ echo "Workflow Head Branch: $HEAD_BRANCH "
21
27
echo "Workflow Run ID: ${{ github.event.workflow_run.id }}"
22
- echo "Head Commit Message: ${{ github.event.workflow_run.head_commit.message }} "
28
+ echo "Head Commit Message: $HEAD_COMMIT_MSG "
23
29
echo "GitHub Ref: ${{ github.ref }}"
24
30
echo "GitHub Ref Name: ${{ github.ref_name }}"
25
31
echo "GitHub Event Name: ${{ github.event_name }}"
You can’t perform that action at this time.
0 commit comments