File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -42,30 +42,33 @@ jobs:
42
42
move-generated-files :
43
43
name : Move generated markdown files to '/content/nginx' directory
44
44
if : needs.detect-changes.outputs.IS_CHANGES_DETECTED
45
- needs : execute-make
45
+ needs : detect-changes
46
46
runs-on : ubuntu-latest
47
47
steps :
48
48
- name : Move the generated folder
49
49
run : |
50
- mv dot-org-repo/libxslt-md/ ./content/nginx/
50
+ mv dot-org-repo/libxslt-md/ ./content/nginx/
51
51
52
52
close-stale-PRs :
53
53
name : Close any related stale PRs
54
+ needs : move-generated-files
54
55
runs-on : ubuntu-latest
55
56
steps :
56
57
- name : Check for any stale PRs
57
58
id : check-stale-pr
58
59
run : |
60
+ "PLACEHOLDER"
59
61
60
62
- name : Close relevant PR if any exists
61
63
if : steps.check-stale-pr.outputs.IS_STALE_FOUND == 'true'
62
64
run : |
65
+ "PLACEHOLDER"
63
66
64
67
65
68
create-PR :
66
69
name : Create PR in documentation repository
67
70
if : needs.detect-changes.outputs.IS_CHANGES_DETECTED
68
- needs : move-generated-files
71
+ needs : close-stale-PRs
69
72
runs-on : ubuntu-latest
70
73
steps :
71
74
- name : Generate the PR
You can’t perform that action at this time.
0 commit comments