Skip to content

Commit

Permalink
Rename ros-planning org
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed May 25, 2024
1 parent 7666f73 commit 92efc14
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:

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

# Deployment job
deploy:
if: github.repository_owner == 'ros-planning' && github.ref == 'refs/heads/master'
if: github.repository_owner == 'moveit' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
needs: doc
environment:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This repository provides the following branches:

## Tutorial

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).
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).

## Roadmap

Expand Down
6 changes: 3 additions & 3 deletions core/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<version>0.1.3</version>
<description>MoveIt Task Pipeline</description>

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

<license>BSD</license>
<maintainer email="[email protected]">Michael Goerner</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion core/src/container.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ void ContainerBasePrivate::setStatus(const Stage* creator, const InterfaceState*
// we mark the first state with ARMED and all other states down the tree with PRUNED.
// This allows us to re-enable the ARMED state, but not the PRUNED states,
// when new states arrive in a Connecting stage.
// For details, https://github.com/ros-planning/moveit_task_constructor/pull/309#issuecomment-974636202
// For details, https://github.com/moveit/moveit_task_constructor/pull/309#issuecomment-974636202
if (status == InterfaceState::Status::ARMED)
status = InterfaceState::Status::PRUNED; // only the first state is marked as ARMED

Expand Down
2 changes: 1 addition & 1 deletion core/src/stage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ void ConnectingPrivate::newState(Interface::iterator it, Interface::UpdateFlags
continue;

// re-enable the opposing state oit (and its associated solution branch) if its status is ARMED
// https://github.com/ros-planning/moveit_task_constructor/pull/309#issuecomment-974636202
// https://github.com/moveit/moveit_task_constructor/pull/309#issuecomment-974636202
if (oit->priority().status() == InterfaceState::Status::ARMED) {
oit_to_enable.push_back(oit);
have_enabled_opposites = true;
Expand Down
6 changes: 3 additions & 3 deletions core/test/test_serial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct TestBase : public TaskTestBase
};

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

// https://github.com/ros-planning/moveit_task_constructor/issues/218
// https://github.com/moveit/moveit_task_constructor/issues/218
TEST_F(ConnectConnect, FailSucc) {
add(t, new GeneratorMockup());
add(t, new Connect({ INF }, true));
Expand All @@ -70,7 +70,7 @@ TEST_F(ConnectConnect, FailSucc) {
EXPECT_FALSE(t.plan());
}

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

0 comments on commit 92efc14

Please sign in to comment.