Skip to content

Commit 42c68d1

Browse files
use proper local gh targetting syntax
1 parent a46e523 commit 42c68d1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pull-request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ on:
55

66
jobs:
77
static-analysis:
8-
uses: .github/workflows/_static-analysis.yml
8+
uses: ./.github/workflows/_static-analysis.yml
99
test-units:
10-
uses: .github/workflows/_test-units.yml
10+
uses: ./.github/workflows/_test-units.yml
1111
needs: static-analysis
1212
secrets: inherit
1313
test-regressions:
14-
uses: .github/workflows/_test-regressions.yml
14+
uses: ./.github/workflows/_test-regressions.yml
1515
needs: test-units
1616
secrets: inherit
1717
test-integrations:
18-
uses: .github/workflows/_test-integrations.yml
18+
uses: ./.github/workflows/_test-integrations.yml
1919
needs: test-units
2020
secrets: inherit
2121
test-code-samples:
22-
uses: .github/workflows/_test-code-samples.yml
22+
uses: ./.github/workflows/_test-code-samples.yml
2323
needs: test-units
2424
secrets: inherit

0 commit comments

Comments
 (0)