Skip to content

Commit 61544f4

Browse files
authored
Website: update create-issues-from-todays-rituals script to work in production (#17680)
Closes: #17678 Changes: - Updated the `create-issues-from-todays-rituals` to create GH issues using rituals from website's configuration instead of the ritual.yml files in the `handbook/` folder - Moved `yaml` to `devDependencies` in `webiste/package.json`
1 parent c6d5151 commit 61544f4

File tree

2 files changed

+9
-25
lines changed

2 files changed

+9
-25
lines changed

website/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
"sails-hook-organics": "^2.2.2",
1616
"sails-hook-orm": "^4.0.2",
1717
"sails-hook-sockets": "^3.0.0",
18-
"sails-postgresql": "^5.0.0",
19-
"yaml": "1.10.2"
18+
"sails-postgresql": "^5.0.0"
2019
},
2120
"devDependencies": {
2221
"eslint": "5.16.0",
2322
"grunt": "1.0.4",
2423
"htmlhint": "0.11.0",
2524
"lesshint": "6.3.6",
2625
"marked": "4.0.10",
27-
"sails-hook-grunt": "^4.0.0"
26+
"sails-hook-grunt": "^4.0.0",
27+
"yaml": "1.10.2"
2828
},
2929
"scripts": {
3030
"custom-tests": "echo \"(No other custom tests yet.)\" && echo",

website/scripts/create-issues-for-todays-rituals.js

+6-22
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,17 @@ module.exports = {
1313

1414
fn: async function ({ dry }) {
1515

16-
let path = require('path');
17-
let YAML = require('yaml');
18-
let topLvlRepoPath = path.resolve(sails.config.appPath, '../');
16+
if (!_.isObject(sails.config.builtStaticContent) || !_.isObject(sails.config.builtStaticContent.rituals)) {
17+
throw new Error('Missing, incomplete, or invalid configuration. Could not create issues for todays rituals, please try running `sails run build-static-content` and try running this script again.');
18+
}
19+
1920
let baseHeaders = {// (for github api)
2021
'User-Agent': 'Fleetie pie',
2122
'Authorization': `token ${sails.config.custom.githubAccessToken}`
2223
};
2324

24-
// Find all the files in the top level /handbook folder and it's sub-folders
25-
let FILES_IN_HANDBOOK_FOLDER = await sails.helpers.fs.ls.with({
26-
dir: path.join(topLvlRepoPath, '/handbook'),
27-
depth: 3
28-
});
29-
// Filter the list of filenames to get the rituals YAML files.
30-
let ritualYamlPaths = FILES_IN_HANDBOOK_FOLDER.filter((filePath)=>{
31-
return _.endsWith(filePath, 'rituals.yml');
32-
});
33-
for (let ritualSource of ritualYamlPaths) {
34-
// Load rituals
35-
let pathToRituals = path.resolve(topLvlRepoPath, ritualSource);
36-
let rituals = [];
37-
let ritualsYml = await sails.helpers.fs.read(pathToRituals);
38-
try {
39-
rituals = YAML.parse(ritualsYml, { prettyErrors: true });
40-
} catch (err) {
41-
throw new Error(`Could not parse the YAMl for rituals at ${pathToRituals} on line ${err.linePos.start.line}. To resolve, make sure the YAML is valid, and try again: ` + err.stack);
42-
}
25+
for (let ritualSource in sails.config.builtStaticContent.rituals) {
26+
let rituals = sails.config.builtStaticContent.rituals[ritualSource];
4327
for (let ritual of rituals) {
4428
// For each ritual, we'll:
4529
// - Convert the ritual's frequency into milliseconds.

0 commit comments

Comments
 (0)