Skip to content

Commit 3ada269

Browse files
ITProKylembordash2
andauthored
update repository URLs to reflect transfer of repository ownership (#2483)
* update repository URLs to reflect transfer of repository ownership * license copyright company name update * code of conduct updated for new email domain * readme updates for repo transfer * replacing references to Onica with Rackspace * update gha urls to reflect new org * update tests for repo name * assertion fix for unit test * update codecov project badge --------- Co-authored-by: Michael Bordash <michael.bordash@rackspace.com>
1 parent b7a582f commit 3ada269

File tree

32 files changed

+68
-67
lines changed

32 files changed

+68
-67
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ body:
1313
1414
⚠ Please make sure that this [issue wasn't already requested][issue search], or already implemented in the master branch.
1515
16-
[issue search]: https://github.com/onicagroup/runway/issues?q=is%3Aissue+is%3Aopen+
16+
[issue search]: https://github.com/rackspace/runway/issues?q=is%3Aissue+is%3Aopen+
1717
- type: textarea
1818
attributes:
1919
label: Bug Description

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: ℹ️ Output GitHub Context
6262
id: gh-context
6363
run: |
64-
export _REPO_ORIGIN="onicagroup/runway";
64+
export _REPO_ORIGIN="rackspace/runway";
6565
echo "repo-origin=${_REPO_ORIGIN}" >> "${GITHUB_OUTPUT}";
6666
export _REPO_HEAD="${{ github.event.pull_request.head.repo.full_name || github.repository }}";
6767
echo "repo-head=${_REPO_HEAD}" >> "${GITHUB_OUTPUT}";

.github/workflows/label-maker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
label-maker:
1414
# Skip running the job from forks.
15-
if: github.repository == 'onicagroup/runway' && github.actor != 'dependabot[bot]'
15+
if: github.repository == 'rackspace/runway' && github.actor != 'dependabot[bot]'
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: ⤵️ Check out code from GitHub

CODE_OF_CONDUCT.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ representative at an online or offline event.
5959
## Enforcement
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62-
reported to the community leaders responsible for enforcement at <opensource@onica.com>.
63-
All complaints will be reviewed and investigated promptly and fairly.
62+
reported to the community leaders responsible for enforcement at
63+
<opensource@rackspace.com>. All complaints will be reviewed and investigated
64+
promptly and fairly.
6465

6566
All community leaders are obligated to respect the privacy and security of the
6667
reporter of any incident.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright 2018 Onica Group LLC
190+
Copyright 2018 Rackspace Technology, Inc.
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");
193193
you may not use this file except in compliance with the License.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Runway
22

3-
[![CI/CD](https://github.com/onicagroup/runway/workflows/CI/CD/badge.svg?branch=master)](https://github.com/onicagroup/runway/actions?query=workflow%3ACI%2FCD)
4-
[![codecov](https://codecov.io/gh/onicagroup/runway/branch/master/graph/badge.svg?token=Ku28I0RY80)](https://codecov.io/gh/onicagroup/runway)
3+
[![CI/CD](https://github.com/rackspace/runway/workflows/CI/CD/badge.svg?branch=master)](https://github.com/rackspace/runway/actions?query=workflow%3ACI%2FCD)
4+
[![codecov](https://codecov.io/gh/rackspace/runway/branch/master/graph/badge.svg?token=Ku28I0RY80)](https://codecov.io/gh/rackspace/runway)
55
[![PyPi](https://img.shields.io/pypi/v/runway?style=flat)](https://pypi.org/project/runway/)
66
[![code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat)](https://github.com/psf/black)
77

8-
![runway-example.gif](https://raw.githubusercontent.com/onicagroup/runway/master/docs/source/images/runway-example.gif)
8+
![runway-example.gif](https://raw.githubusercontent.com/rackspace/runway/master/docs/source/images/runway-example.gif)
99

1010
Runway is a lightweight integration app designed to ease management of infrastructure tools.
1111

docs/source/cfngin/blueprints.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _Runway blueprints: https://github.com/onicagroup/runway/tree/master/runway/blueprints
1+
.. _Runway blueprints: https://github.com/rackspace/runway/tree/master/runway/blueprints
22
.. _troposphere: https://github.com/cloudtools/troposphere
33

44
.. _Blueprint:
@@ -216,7 +216,7 @@ A sample config for the above:
216216
217217
218218
CFNType
219-
=======
219+
========
220220

221221
The :class:`~runway.cfngin.blueprints.variables.types.CFNType` can be used to signal that a variable should be submitted to CloudFormation as a Parameter instead of only available to the |Blueprint| when rendering.
222222
This is useful if you want to leverage AWS-Specific Parameter types (e.g. ``List<AWS::EC2::Image::Id>``) or Systems Manager Parameter Store values (e.g. ``AWS::SSM::Parameter::Value<String>``).

docs/source/cfngin/remote_sources.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ Git Repository
159159
160160
package_sources:
161161
git:
162-
- uri: git@github.com:onicagroup/runway.git # ssh
163-
- uri: https://github.com/onicagroup/runway.git # https
162+
- uri: git@github.com:rackspace/runway.git # ssh
163+
- uri: https://github.com/rackspace/runway.git # https
164164
165165
166166
*****

docs/source/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ CHANGELOG
77
The PAT used only needs repo.public_repo access.
88
99
.. changelog::
10-
:changelog-url: https://github.com/onicagroup/runway/releases
11-
:github: https://github.com/onicagroup/runway/releases
10+
:changelog-url: https://github.com/rackspace/runway/releases
11+
:github: https://github.com/rackspace/runway/releases
1212
:pypi: https://pypi.org/project/runway/

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
# -- Options for LaTeX output ------------------------------------------------
9696
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-latex-output
9797
latex_documents = [
98-
(master_doc, "runway.tex", "runway Documentation", "Onica Group", "manual"),
98+
(master_doc, "runway.tex", "runway Documentation", "Rackspace Technology, Inc.", "manual"),
9999
]
100100
latex_elements = {}
101101

0 commit comments

Comments
 (0)