-
Notifications
You must be signed in to change notification settings - Fork 277
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
Build repo: Move all .sh
scripts from root folder to scripts/
folder.
#2495
Comments
Can you please add your thoughts? This would clean the repo root folder and would better organize the scripts. |
That is a huge change especially the build.sh/test.sh/assemble.sh/sign.sh etc. |
Similar related issue: #153 |
I would like to work on this |
I identified 11 scripts as of now $ ls | grep .sh
assemble.sh
build.sh
checkout.sh
ci.sh
manifests.sh
release_notes.sh
report.sh
run.sh
sign.sh
test.sh
validation.sh I moved them to the scripts folder and I am updating the paths. |
Is your feature request related to a problem? Please describe
There are multiple bash scripts that are part of the root folder, there is an already exists scripts/ folder. It would be clean to move the
.sh
files from the root to folder and store them underscripts/
.Describe the solution you'd like
Move all the
.sh
scripts that involve the workflows toscripts/
folder.Once migrated call the
.sh
file from the script folder.Example for
release_notes.sh
:Instead of
./release_notes.sh check manifests/2.2.0/opensearch-2.2.0.yml --date 2022-07-26
Run:
./scripts/release_notes.sh check manifests/2.2.0/opensearch-2.2.0.yml --date 2022-07-26
To achieve this move
run.sh
,Pipfile Pipfile.lock
toscripts/
folder.Modify the
.sh
scripts as followsExample
release_notes.sh
Describe alternatives you've considered
No response
Additional context
No response
Acceptance Criteria
The text was updated successfully, but these errors were encountered: