We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27efa45 commit 60b91e4Copy full SHA for 60b91e4
1 file changed
.github/workflows/testing.yml
@@ -16,6 +16,7 @@ permissions:
16
17
jobs:
18
test:
19
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
20
runs-on: ${{ matrix.os }}
21
strategy:
22
matrix:
@@ -25,6 +26,7 @@ jobs:
25
26
os: [windows-latest, ubuntu-22.04]
27
locale: ['ru_RU']
28
fail-fast: false
29
+
30
steps:
31
- name: Установка локали
32
if: matrix.os == startsWith(matrix.os, 'windows')
@@ -36,6 +38,10 @@ jobs:
36
38
37
39
- name: Актуализация
40
uses: actions/checkout@v4.2.2
41
+ with:
42
+ fetch-depth: 0
43
+ repository: ${{ github.event.workflow_run.head_repository.full_name }}
44
+ ref: ${{ github.event.workflow_run.head_sha }}
45
46
# Установка OneScript конкретной версии
47
- name: Установка OneScript
0 commit comments