Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve catchup script #236

Merged
merged 23 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
fe83225
feat(catchup script): delete the current script to rewrite it with a …
BlueCutOfficial Jan 9, 2024
468c30e
feat(catchup script): create a script that switch to a new working br…
BlueCutOfficial Jan 9, 2024
f47af23
feat(catchup script): output the list of files that changed between r…
BlueCutOfficial Jan 9, 2024
3839ce8
feat(catchup script): make the name of the branch dynamic by passing …
BlueCutOfficial Jan 9, 2024
cb0529f
feat(catchup script): create a directory to put patch files we want t…
BlueCutOfficial Jan 9, 2024
2fbacb2
feat(catchup script): prepare a list of warnings to log all manual ac…
BlueCutOfficial Jan 9, 2024
f50ebe2
feat(catchup script): create the function that will output the diff f…
BlueCutOfficial Jan 9, 2024
cfa8d11
feat(catchup script): declare an array filesToPost that will be used …
BlueCutOfficial Jan 9, 2024
0e401c3
feat(catchup script): create the function that loop on the changed fi…
BlueCutOfficial Jan 9, 2024
cbf9d0f
feat(catchup script): once a diff file is create, read its content. W…
BlueCutOfficial Jan 9, 2024
a88cae1
feat(catchup script): for each file, remove the term release/ from th…
BlueCutOfficial Jan 9, 2024
3d25843
feat(catchup script): for each diff file, rewrite the content with th…
BlueCutOfficial Jan 9, 2024
6560ced
feat(catchup script): try to apply the patch. If the file is new or i…
BlueCutOfficial Jan 9, 2024
5b3e13a
feat(catchup script): add a relevant return to the writeDiffFiles fun…
BlueCutOfficial Jan 9, 2024
a7b9619
feat(catchup script): prepare the header to post the GitHub issues. I…
BlueCutOfficial Jan 9, 2024
374da5d
feat(catchup script): prepare the body of the GitHub issue for a give…
BlueCutOfficial Jan 9, 2024
05a0c10
feat(catchup script): create the function that will post the GitHub i…
BlueCutOfficial Jan 9, 2024
ac88166
feat(catchup script): create and call the function that will post all…
BlueCutOfficial Jan 9, 2024
229b92f
feat(catchup script): if at least one file could be patched automatic…
BlueCutOfficial Jan 9, 2024
c060a2a
feat(catchup script): open the catchup PR when the changes could be p…
BlueCutOfficial Jan 9, 2024
bbeeb8a
feat(catchup script): prepare 3 functions to properly close the proce…
BlueCutOfficial Jan 9, 2024
7125d5c
feat(catchup script): properly close the process, update ref-upstream…
BlueCutOfficial Jan 9, 2024
facdee3
feat(catchup script): print the warning messages also when the script…
BlueCutOfficial Jan 9, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@
"test:ember": "ember test",
"test:node": "mocha node-tests --exclude node-tests/local/**",
"test:node-local": "mocha node-tests/local",
"test:node-local-exclude-api-urls": "FOLLOW_API_URLS=false npm run test:node-local",
"catchup": "node scripts/catchup.mjs"
"test:node-local-exclude-api-urls": "FOLLOW_API_URLS=false npm run test:node-local"
},
"devDependencies": {
"@ember/optional-features": "^2.0.0",
Expand Down
Loading
Loading