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 11name : Linting
22
33on :
4+ workflow_dispatch :
45 pull_request :
56 paths :
67 - ' geotrek/**' # if geotrek code change
Original file line number Diff line number Diff line change 1- name : Realese process
1+ name : Release process
22
33on :
44 workflow_run :
@@ -18,9 +18,21 @@ concurrency:
1818 cancel-in-progress : true
1919
2020jobs :
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+
2133 deploy :
2234 name : Publish
23- if : ${{ github.event.workflow_run.conclusion == 'success' }}
35+ needs : [run_other_workflows]
2436 runs-on : ubuntu-latest
2537 steps :
2638 - uses : actions/checkout@v5
You can’t perform that action at this time.
0 commit comments