File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Check Cities
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ paths :
8
+ - web_source/cities/**
9
+ pull_request :
10
+ branches :
11
+ - main
12
+ paths :
13
+ - web_source/cities/**
14
+ workflow_dispatch :
15
+
16
+ jobs :
17
+ build :
18
+ runs-on : ubuntu-latest
19
+ steps :
20
+ - name : Check out repository
21
+ uses : actions/checkout@v4
22
+ - uses : tj-actions/changed-files@v46
23
+ id : changed-cities-files
24
+ with :
25
+ base_sha : ' main'
26
+ files : web_source/cities/**/*.md
27
+ - name : Checks travellers links
28
+ id : lychee
29
+ uses : lycheeverse/lychee-action@v2
30
+ env :
31
+ ALL_CHANGED_FILES : ${{ steps.changed-cities-files.outputs.all_changed_files }}
32
+ with :
33
+ args : " --no-progress web_source/travellers --verbose -- ${ALL_CHANGED_FILES}"
34
+ fail : true
35
+ jobSummary : true
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ paths :
8
+ - web_source/travellers/**
7
9
pull_request :
8
10
branches :
9
11
- main
12
+ paths :
13
+ - web_source/travellers/**
10
14
workflow_dispatch :
11
15
12
16
jobs :
You can’t perform that action at this time.
0 commit comments