Skip to content

Commit 92efc14

Browse files
committed
Rename ros-planning org
1 parent 7666f73 commit 92efc14

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112

113113
doc:
114114
# https://devblogs.microsoft.com/cppblog/clear-functional-c-documentation-with-sphinx-breathe-doxygen-cmake
115-
if: github.repository_owner == 'ros-planning'
115+
if: github.repository_owner == 'moveit'
116116
runs-on: ubuntu-latest
117117
needs: ici
118118
container:
@@ -150,7 +150,7 @@ jobs:
150150

151151
# Deployment job
152152
deploy:
153-
if: github.repository_owner == 'ros-planning' && github.ref == 'refs/heads/master'
153+
if: github.repository_owner == 'moveit' && github.ref == 'refs/heads/master'
154154
runs-on: ubuntu-latest
155155
needs: doc
156156
environment:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This repository provides the following branches:
2424

2525
## Tutorial
2626

27-
We provide a tutorial for a pick-and-place pipeline without bells & whistles [as part of the MoveIt tutorials](https://ros-planning.github.io/moveit_tutorials/doc/moveit_task_constructor/moveit_task_constructor_tutorial.html).
27+
We provide a tutorial for a pick-and-place pipeline without bells & whistles [as part of the MoveIt tutorials](https://moveit.github.io/moveit_tutorials/doc/moveit_task_constructor/moveit_task_constructor_tutorial.html).
2828

2929
## Roadmap
3030

core/package.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<version>0.1.3</version>
44
<description>MoveIt Task Pipeline</description>
55

6-
<url type="website">https://github.com/ros-planning/moveit_task_constructor</url>
7-
<url type="repository">https://github.com/ros-planning/moveit_task_constructor</url>
8-
<url type="bugtracker">https://github.com/ros-planning/moveit_task_constructor/issues</url>
6+
<url type="website">https://github.com/moveit/moveit_task_constructor</url>
7+
<url type="repository">https://github.com/moveit/moveit_task_constructor</url>
8+
<url type="bugtracker">https://github.com/moveit/moveit_task_constructor/issues</url>
99

1010
<license>BSD</license>
1111
<maintainer email="[email protected]">Michael Goerner</maintainer>

core/src/container.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ void ContainerBasePrivate::setStatus(const Stage* creator, const InterfaceState*
211211
// we mark the first state with ARMED and all other states down the tree with PRUNED.
212212
// This allows us to re-enable the ARMED state, but not the PRUNED states,
213213
// when new states arrive in a Connecting stage.
214-
// For details, https://github.com/ros-planning/moveit_task_constructor/pull/309#issuecomment-974636202
214+
// For details, https://github.com/moveit/moveit_task_constructor/pull/309#issuecomment-974636202
215215
if (status == InterfaceState::Status::ARMED)
216216
status = InterfaceState::Status::PRUNED; // only the first state is marked as ARMED
217217

core/src/stage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ void ConnectingPrivate::newState(Interface::iterator it, Interface::UpdateFlags
809809
continue;
810810

811811
// re-enable the opposing state oit (and its associated solution branch) if its status is ARMED
812-
// https://github.com/ros-planning/moveit_task_constructor/pull/309#issuecomment-974636202
812+
// https://github.com/moveit/moveit_task_constructor/pull/309#issuecomment-974636202
813813
if (oit->priority().status() == InterfaceState::Status::ARMED) {
814814
oit_to_enable.push_back(oit);
815815
have_enabled_opposites = true;

core/test/test_serial.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct TestBase : public TaskTestBase
4646
};
4747

4848
using ConnectConnect = TestBase;
49-
// https://github.com/ros-planning/moveit_task_constructor/issues/182
49+
// https://github.com/moveit/moveit_task_constructor/issues/182
5050
TEST_F(ConnectConnect, SuccSucc) {
5151
add(t, new GeneratorMockup({ 1.0, 2.0, 3.0 }));
5252
add(t, new Connect());
@@ -58,7 +58,7 @@ TEST_F(ConnectConnect, SuccSucc) {
5858
EXPECT_COSTS(t.solutions(), ::testing::ElementsAre(11, 12, 13, 21, 22, 23));
5959
}
6060

61-
// https://github.com/ros-planning/moveit_task_constructor/issues/218
61+
// https://github.com/moveit/moveit_task_constructor/issues/218
6262
TEST_F(ConnectConnect, FailSucc) {
6363
add(t, new GeneratorMockup());
6464
add(t, new Connect({ INF }, true));
@@ -70,7 +70,7 @@ TEST_F(ConnectConnect, FailSucc) {
7070
EXPECT_FALSE(t.plan());
7171
}
7272

73-
// https://github.com/ros-planning/moveit_task_constructor/issues/485#issuecomment-1760606116
73+
// https://github.com/moveit/moveit_task_constructor/issues/485#issuecomment-1760606116
7474
TEST_F(ConnectConnect, UniqueEnumeration) {
7575
add(t, new GeneratorMockup({ 1.0, 2.0, 3.0 }));
7676
auto con1 = add(t, new ConnectMockup());

0 commit comments

Comments
 (0)