File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Linting
2
2
3
3
on :
4
+ workflow_dispatch :
4
5
pull_request :
5
6
paths :
6
7
- ' geotrek/**' # if geotrek code change
Original file line number Diff line number Diff line change 1
- name : Realese process
1
+ name : Release process
2
2
3
3
on :
4
4
workflow_run :
@@ -18,9 +18,21 @@ concurrency:
18
18
cancel-in-progress : true
19
19
20
20
jobs :
21
+ run_other_workflows :
22
+ name : Run other workflows
23
+ runs-on : ubuntu-latest
24
+ steps :
25
+ - name : Trigger Test CI workflow
26
+ uses : benc-uk/workflow-dispatch@v1
27
+ with :
28
+ workflow : Linting'
29
+ repo : ${{ github.repository }}
30
+ ref : ' master'
31
+ token : ${{ secrets.GITHUB_TOKEN }}
32
+
21
33
deploy :
22
34
name : Publish
23
- if : ${{ github.event.workflow_run.conclusion == 'success' }}
35
+ needs : [run_other_workflows]
24
36
runs-on : ubuntu-latest
25
37
steps :
26
38
- uses : actions/checkout@v5
You can’t perform that action at this time.
0 commit comments