forked from platformsh/template-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsculpin.migrate.json
70 lines (70 loc) · 3.13 KB
/
sculpin.migrate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"template": "sculpin",
"type": "php",
"type_version": "8.1",
"remote": {
"major_version": "3",
"repository": "https://github.com/sculpin/sculpin-blog-skeleton.git",
"latest_tag": null
},
"last_updated_on": "2022-04-05-13:59:52",
"migration": {
"files": {
"rel_template": [
"https://raw.githubusercontent.com/platformsh-templates/sculpin/master/README.md",
"https://raw.githubusercontent.com/platformsh-templates/sculpin/master/.lando.upstream.yml",
"https://raw.githubusercontent.com/platformsh-templates/sculpin/master/.platform.app.yaml",
"https://raw.githubusercontent.com/platformsh-templates/sculpin/master/.platform/services.yaml",
"https://raw.githubusercontent.com/platformsh-templates/sculpin/master/.platform/routes.yaml"
],
"rel_tb": [
"https://raw.githubusercontent.com/platformsh/template-builder/master/README.md",
"https://raw.githubusercontent.com/platformsh/template-builder/master/.lando.upstream.yml",
"https://raw.githubusercontent.com/platformsh/template-builder/master/.platform.app.yaml",
"https://raw.githubusercontent.com/platformsh/template-builder/master/.platform/services.yaml",
"https://raw.githubusercontent.com/platformsh/template-builder/master/.platform/routes.yaml"
],
"rel_root": [
"README.md",
".lando.upstream.yml",
".platform.app.yaml",
".platform/services.yaml",
".platform/routes.yaml"
]
},
"commands": {
"cleanup": [
"rm -rf /Users/chadcarlson/template-builder/templates/sculpin/build/"
],
"init": [
"git clone git@github.com:platformsh-templates/sculpin.git /Users/chadcarlson/template-builder/templates/sculpin/build/",
"git remote add project https://github.com/sculpin/sculpin-blog-skeleton.git"
],
"update": [
"git checkout master",
"git fetch --all --depth=2",
"git fetch --all --tags"
],
"platformify": [
"rsync -aP /Users/chadcarlson/template-builder/common/all/ /Users/chadcarlson/template-builder/templates/sculpin/build/",
"rsync -aP /Users/chadcarlson/template-builder/templates/sculpin/files/ /Users/chadcarlson/template-builder/templates/sculpin/build/"
],
"branch": [
"git checkout -b updatesLocal"
],
"push": []
},
"migrate": {
"init": [
"mkdir sculpin && cd sculpin",
"git init",
"git remote add upstream https://github.com/sculpin/sculpin-blog-skeleton.git",
"git branch -m main",
"git fetch --all --depth=2",
"git fetch --all --tags",
"git merge --allow-unrelated-histories -X theirs 3"
],
"deps": []
}
}
}