We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55f7523 commit 796d6c0Copy full SHA for 796d6c0
.github/workflows/LThooks-ci.yml
@@ -14,7 +14,11 @@ jobs:
14
name: Execute SmartUI Test with Github App Integration
15
runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@v3
+ - name: Checkout code
18
+ if: github.event_name == 'pull_request'
19
+ uses: actions/checkout@v3
20
+ with:
21
+ ref: ${{ github.head_ref }}
22
23
- name: Create commit status
24
run: |
.github/workflows/SDK-ci.yml
@@ -17,8 +17,11 @@ jobs:
name: Execute NodeJS sdk build
- - name: Checkout repo
uses: actions/checkout@v3
25
26
- name: Install Dependencies
27
0 commit comments