Remove develop references
This commit is contained in:
parent
9818379ed5
commit
5bef8fc607
|
@ -246,7 +246,7 @@ jobs:
|
||||||
|
|
||||||
if (submoduleCommit !== baseCommit) {
|
if (submoduleCommit !== baseCommit) {
|
||||||
console.error('Submodule commit does not match the latest commit on the "${{ steps.get_pro_commits.outputs.target_branch }}" branch.');
|
console.error('Submodule commit does not match the latest commit on the "${{ steps.get_pro_commits.outputs.target_branch }}" branch.');
|
||||||
console.error('Refer to the pro repo to merge your changes: https://github.com/Budibase/budibase-pro/blob/develop/docs/getting_started.md')
|
console.error('Refer to the pro repo to merge your changes: https://github.com/Budibase/budibase-pro/blob/master/docs/getting_started.md')
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
} else {
|
} else {
|
||||||
console.log('All good, the submodule had been merged and setup correctly!')
|
console.log('All good, the submodule had been merged and setup correctly!')
|
||||||
|
|
|
@ -84,7 +84,7 @@ Component libraries are collections of components as well as the definition of t
|
||||||
|
|
||||||
- If the project diverges from your branch, please rebase instead of merging. This makes the commit graph easier to read.
|
- If the project diverges from your branch, please rebase instead of merging. This makes the commit graph easier to read.
|
||||||
|
|
||||||
- Once your work is completed, please raise a PR against the `develop` branch with some information about what has changed and why.
|
- Once your work is completed, please raise a PR against the `master` branch with some information about what has changed and why.
|
||||||
|
|
||||||
### Getting Started For Contributors
|
### Getting Started For Contributors
|
||||||
|
|
||||||
|
@ -246,7 +246,7 @@ From here - to develop a change in pro, you can follow the below flow:
|
||||||
cd packages/pro
|
cd packages/pro
|
||||||
# get the base branch you are working from (same as monorepo)
|
# get the base branch you are working from (same as monorepo)
|
||||||
git fetch
|
git fetch
|
||||||
git checkout <develop | master>
|
git checkout master
|
||||||
# create a branch, named the same as the branch in your monorepo
|
# create a branch, named the same as the branch in your monorepo
|
||||||
git checkout -b <some branch>
|
git checkout -b <some branch>
|
||||||
... make changes
|
... make changes
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit b51dc2b91349d70e235f1b8e25b2ce5b15576fd1
|
Subproject commit 0fa909b15222b22882d6667b92c422d1057c9472
|
|
@ -39,7 +39,7 @@ getDistro
|
||||||
if [[ $OS == "Darwin" ]];
|
if [[ $OS == "Darwin" ]];
|
||||||
then
|
then
|
||||||
echo "This script is not setup for your machine type:" $OS
|
echo "This script is not setup for your machine type:" $OS
|
||||||
echo "Please use the manual steps described in https://github.com/Budibase/budibase/blob/develop/docs/CONTRIBUTING.md#getting-started-for-contributors"
|
echo "Please use the manual steps described in https://github.com/Budibase/budibase/blob/master/docs/CONTRIBUTING.md#getting-started-for-contributors"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue