Skip to content

Commit

Permalink
Rename blackboard-open-source > moodlehq
Browse files Browse the repository at this point in the history
  • Loading branch information
kabalin committed Jul 9, 2020
1 parent a632637 commit feefc13
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "blackboard-open-source/moodle-plugin-ci",
"name": "moodlehq/moodle-plugin-ci",
"description": "Assists with running Moodle plugins in Travis CI",
"keywords": ["moodle", "travis", "ci", "testing"],
"type": "project",
Expand Down
6 changes: 2 additions & 4 deletions docs/Help.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ changed. Also a good place to look for new goodies.

## Other help

If the above links do not help you, maybe someone
[asked it already](https://github.com/blackboard-open-source/moodle-plugin-ci/issues?q=is%3Aissue%20label%3Aquestion).
If you still cannot find an answer, and Google has failed you as well, then please feel free
to submit an [new issue](https://github.com/blackboard-open-source/moodle-plugin-ci/issues/new) providing
If the above links do not help you, and Google has failed you as well, then please feel free
to submit an [new issue](https://github.com/moodlehq/moodle-plugin-ci/issues/new) providing
as many relevant details as possible.
2 changes: 1 addition & 1 deletion docs/TravisFileExplained.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: Travis CI file explained
---

Below is the [.travis.dist.yml](https://github.com/blackboard-open-source/moodle-plugin-ci/blob/master/.travis.dist.yml)
Below is the [.travis.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/master/.travis.dist.yml)
file but with comments added to explain what each section is doing. For additional help,
see [Travis CI's documentation](http://docs.travis-ci.com/user/getting-started/).

Expand Down
8 changes: 4 additions & 4 deletions docs/UPGRADE-2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Detailed information about what changed in Version 2 can be found in the [change

## Step 3: Review the Travis CI configuration file

Review the updated [.travis.dist.yml](https://github.com/blackboard-open-source/moodle-plugin-ci/blob/master/.travis.dist.yml)
Review the updated [.travis.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/master/.travis.dist.yml)
and update your `.travis.yml` file in your plugin. For detailed information about the contents of `.travis.dist.yml`
file, please see this [help document](TravisFileExplained.md). **Please carefully** review the updated
`.travis.dist.yml` as some steps have been removed and others added, like installation of Java 8,
Expand All @@ -25,7 +25,7 @@ upgrade of NodeJS, etc.

### What is happening to Version 1?

Version 1 still exists in the [v1](https://github.com/blackboard-open-source/moodle-plugin-ci/tree/v1) branch. You can continue
Version 1 still exists in the [v1](https://github.com/moodlehq/moodle-plugin-ci/tree/v1) branch. You can continue
to use it, but it is no longer getting new features and may not receive additional updates. In addition, it may start
breaking in Moodle 3.2 or later.

Expand Down Expand Up @@ -53,8 +53,8 @@ env:

before_install:
# You must install the correct version of this project:
- if [ "$V2" = false ]; then composer create-project -n --no-dev --prefer-dist blackboard-open-source/moodle-plugin-ci ci ^1; fi
- if [ "$V2" = true ]; then composer create-project -n --no-dev --prefer-dist blackboard-open-source/moodle-plugin-ci ci ^2; fi
- if [ "$V2" = false ]; then composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^1; fi
- if [ "$V2" = true ]; then composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^2; fi

script:
# Example of a Version 2 only command:
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
title: Moodle Plugin CI
description: Moodle plugin + Travis CI
github_username: blackboard-open-source
github_username: moodlehq
theme: minima
header_pages:
- CHANGELOG.md
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ In addition, the plugin being tested must have a [version.php](https://docs.mood
and `$plugin->component` must be defined within it.

If you need to run your plugin in earlier versions of Moodle, then please use Version 1 of this tool. Documentation
and more information about Version 1 can be found in the [v1](https://github.com/blackboard-open-source/moodle-plugin-ci/tree/v1)
and more information about Version 1 can be found in the [v1](https://github.com/moodlehq/moodle-plugin-ci/tree/v1)
branch. Please know that Version 1 is no longer getting new features and may not receive additional updates.

## Getting started
Expand All @@ -47,7 +47,7 @@ run a build to make sure nothing broke.

### Step 2

Copy the [.travis.dist.yml](https://github.com/blackboard-open-source/moodle-plugin-ci/blob/master/.travis.dist.yml) file into the
Copy the [.travis.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/master/.travis.dist.yml) file into the
root of your plugin and rename it to `.travis.yml`. Now might be a good time to review the `.travis.yml` contents and
remove anything that is not needed. See this [help document](TravisFileExplained.md) for an explanation about the
contents of the this file. Once you have added the `.travis.yml` file, commit and push up to GitHub, to trigger a
Expand Down Expand Up @@ -87,4 +87,4 @@ Semantic Versioning.
## License

This project is licensed under the GNU GPL v3 or later. See the
[LICENSE](https://github.com/blackboard-open-source/moodle-plugin-ci/blob/master/LICENSE) file for details.
[LICENSE](https://github.com/moodlehq/moodle-plugin-ci/blob/master/LICENSE) file for details.
2 changes: 1 addition & 1 deletion src/Command/SelfUpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
}

$strategy = new GithubStrategy();
$strategy->setPackageName('blackboard-open-source/moodle-plugin-ci');
$strategy->setPackageName('moodlehq/moodle-plugin-ci');
$strategy->setPharName('moodle-plugin-ci.phar');
$strategy->setCurrentLocalVersion($this->getApplication()->getVersion());
$strategy->setStability($stability);
Expand Down

0 comments on commit feefc13

Please sign in to comment.