Skip to content

Commit 8d8bfed

Browse files
committed
Rename ros-planning organization in docker and CI workflow files
- ghcr.io/ros-planning -> ghcr.io/moveit - github.repository == 'moveit/*''
1 parent 4495dd5 commit 8d8bfed

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

.docker/ci-testing/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ghcr.io/ros-planning/moveit2:${OUR_ROS_DISTRO}-ci-testing
1+
# ghcr.io/moveit/moveit2:${OUR_ROS_DISTRO}-ci-testing
22
# CI image using the ROS testing repository
33

44
FROM osrf/ros2:testing

.docker/ci/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ghcr.io/ros-planning/moveit2:${ROS_DISTRO}-ci
1+
# ghcr.io/moveit/moveit2:${ROS_DISTRO}-ci
22
# ROS base image augmented with all MoveIt dependencies to use for CI
33

44
ARG ROS_DISTRO=rolling

.docker/release/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ghcr.io/ros-planning/moveit2:${ROS_DISTRO}-release
1+
# ghcr.io/moveit/moveit2:${ROS_DISTRO}-release
22
# Full debian-based install of MoveIt using apt-get
33

44
ARG ROS_DISTRO=rolling

.docker/source/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax = docker/dockerfile:1.3
22

3-
# ghcr.io/ros-planning/moveit2:${ROS_DISTRO}-source
3+
# ghcr.io/moveit/moveit2:${ROS_DISTRO}-source
44
# Downloads the moveit source code and install remaining debian dependencies
55

66
ARG ROS_DISTRO=rolling

.docker/tutorial-source/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax = docker/dockerfile:1.3
22

3-
# ghcr.io/ros-planning/moveit2:main-${ROS_DISTRO}-tutorial-source
3+
# ghcr.io/moveit/moveit2:main-${ROS_DISTRO}-tutorial-source
44
# Source build of the repos file from the tutorail site
55

66
ARG ROS_DISTRO=rolling

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
df -h
8585
- uses: actions/checkout@v4
8686
- uses: testspace-com/setup-testspace@v1
87-
if: github.repository == 'ros-planning/moveit2'
87+
if: github.repository == 'moveit/moveit2'
8888
with:
8989
domain: ros-planning
9090
- name: Get latest release date for rosdistro
@@ -141,7 +141,7 @@ jobs:
141141
uses: ros-industrial/industrial_ci@master
142142
env: ${{ matrix.env }}
143143
- name: Push result to Testspace
144-
if: always() && (github.repository == 'ros-planning/moveit2')
144+
if: always() && (github.repository == 'moveit/moveit2')
145145
run: |
146146
testspace "[ ${{ matrix.env.IMAGE }} ]${{ env.BASEDIR }}/target_ws/**/test_results/**/*.xml"
147147
- name: Upload test artifacts (on failure)

.github/workflows/docker.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
packages: write
2626
contents: read
2727
env:
28-
GH_IMAGE: ghcr.io/ros-planning/moveit2:${{ matrix.ROS_DISTRO }}-${{ github.job }}
28+
GH_IMAGE: ghcr.io/moveit/moveit2:${{ matrix.ROS_DISTRO }}-${{ github.job }}
2929
DH_IMAGE: moveit/moveit2:${{ matrix.ROS_DISTRO }}-${{ github.job }}
30-
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'ros-planning/moveit2') }}
30+
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'moveit/moveit2') }}
3131

3232
steps:
3333
- uses: rhaschke/docker-run-action@v5
@@ -78,9 +78,9 @@ jobs:
7878
packages: write
7979
contents: read
8080
env:
81-
GH_IMAGE: ghcr.io/ros-planning/moveit2:${{ matrix.ROS_DISTRO }}-${{ github.job }}
81+
GH_IMAGE: ghcr.io/moveit/moveit2:${{ matrix.ROS_DISTRO }}-${{ github.job }}
8282
DH_IMAGE: moveit/moveit2:${{ matrix.ROS_DISTRO }}-${{ github.job }}
83-
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'ros-planning/moveit2') }}
83+
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'moveit/moveit2') }}
8484

8585
steps:
8686
- uses: rhaschke/docker-run-action@v5
@@ -134,9 +134,9 @@ jobs:
134134
packages: write
135135
contents: read
136136
env:
137-
GH_IMAGE: ghcr.io/ros-planning/moveit2:${{ matrix.ROS_DISTRO }}-${{ github.job }}
137+
GH_IMAGE: ghcr.io/moveit/moveit2:${{ matrix.ROS_DISTRO }}-${{ github.job }}
138138
DH_IMAGE: moveit/moveit2:${{ matrix.ROS_DISTRO }}-${{ github.job }}
139-
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'ros-planning/moveit2') }}
139+
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'moveit/moveit2') }}
140140

141141
steps:
142142
- uses: actions/checkout@v4
@@ -177,7 +177,7 @@ jobs:
177177
- source
178178
steps:
179179
- name: Delete Untagged Images
180-
if: (github.event_name != 'pull_request') && (github.repository == 'ros-planning/moveit2')
180+
if: (github.event_name != 'pull_request') && (github.repository == 'moveit/moveit2')
181181
uses: actions/github-script@v7
182182
with:
183183
github-token: ${{ secrets.DELETE_PACKAGES_TOKEN }}
@@ -193,6 +193,6 @@ jobs:
193193
}
194194
}
195195
env:
196-
OWNER: ros-planning
196+
OWNER: moveit
197197
PACKAGE_NAME: moveit2
198198
PER_PAGE: 100

.github/workflows/sonar.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
df -h
5858
- uses: actions/checkout@v4
5959
- uses: testspace-com/setup-testspace@v1
60-
if: github.repository == 'ros-planning/moveit2'
60+
if: github.repository == 'moveit/moveit2'
6161
with:
6262
domain: ros-planning
6363
- name: Get latest release date for rosdistro

.github/workflows/tutorial_docker.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
packages: write
2323
contents: read
2424
env:
25-
GH_IMAGE: ghcr.io/ros-planning/moveit2:main-${{ matrix.ROS_DISTRO }}-${{ github.job }}
25+
GH_IMAGE: ghcr.io/moveit/moveit2:main-${{ matrix.ROS_DISTRO }}-${{ github.job }}
2626
DH_IMAGE: moveit/moveit2:main-${{ matrix.ROS_DISTRO }}-${{ github.job }}
27-
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'ros-planning/moveit2') }}
27+
PUSH: ${{ (github.event_name != 'pull_request') && (github.repository == 'moveit/moveit2') }}
2828

2929
steps:
3030
- uses: actions/checkout@v4
@@ -74,7 +74,7 @@ jobs:
7474
- tutorial-source
7575
steps:
7676
- name: Delete Untagged Images
77-
if: (github.event_name != 'pull_request') && (github.repository == 'ros-planning/moveit2')
77+
if: (github.event_name != 'pull_request') && (github.repository == 'moveit/moveit2')
7878
uses: actions/github-script@v7
7979
with:
8080
github-token: ${{ secrets.DELETE_PACKAGES_TOKEN }}
@@ -90,6 +90,6 @@ jobs:
9090
}
9191
}
9292
env:
93-
OWNER: ros-planning
93+
OWNER: moveit
9494
PACKAGE_NAME: moveit2
9595
PER_PAGE: 100

0 commit comments

Comments
 (0)