Skip to content

Rename CCOS website repository #228

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ based on the [`community_team_members.json`][databag] Lektor databag.

[sync_teams_yml]: .github/workflows/sync_community_teams.yml
[teams_file]: sync_community_teams.py
[databag]: https://github.com/creativecommons/creativecommons.github.io-source/blob/master/databags/community_team_members.json
[databag]: https://github.com/creativecommons/ccos-website-source/blob/master/databags/community_team_members.json
[ctlistpage]: https://opensource.creativecommons.org/community/community-team/members/


Expand Down Expand Up @@ -149,7 +149,7 @@ This retreives data from Asana, formats it as a lektor databag, and pushes it
to CC Open Source website source repository:
- Data Source: [Community Team Tracking - Asana][asana] (limited access)
- Data Destination:
- [`creativecommons/creativecommons.github.io-source`][ccos_source]
- [`creativecommons/ccos-website-source`][ccos_source]
- [`databags/community_team_members.json`][db_community]
- [`databags/repos.json`][db_repos]

Expand All @@ -162,9 +162,9 @@ The destination data is used by the following pages:
[ctlistpage]: https://opensource.creativecommons.org/community/community-team/members/
[osproj]: https://opensource.creativecommons.org/contributing-code/projects/
[asana]: https://app.asana.com/0/1172465506923657/list
[ccos_source]: https://github.com/creativecommons/creativecommons.github.io-source
[db_community]: https://github.com/creativecommons/creativecommons.github.io-source/blob/main/databags/community_team_members.json
[db_repos]: https://github.com/creativecommons/creativecommons.github.io-source/blob/main/databags/repos.json
[ccos_source]: https://github.com/creativecommons/ccos-website-source
[db_community]: https://github.com/creativecommons/ccos-website-source/blob/main/databags/community_team_members.json
[db_repos]: https://github.com/creativecommons/ccos-website-source/blob/main/databags/repos.json


## Environment Variables
Expand Down
2 changes: 1 addition & 1 deletion ccos/data/push_data_via_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# First-party/Local
from ccos.gh_utils import GITHUB_ORGANIZATION, get_credentials

GITHUB_REPO_NAME = "creativecommons.github.io-source"
GITHUB_REPO_NAME = "ccos-website-source"
GIT_USER_EMAIL = "cc-creativecommons-github-io-bot@creativecommons.org"
GIT_USER_NAME = "CC creativecommons.github.io Bot"
JSON_FILE_DIR = "databags"
Expand Down
2 changes: 1 addition & 1 deletion ccos/manage/projects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ TimidRobot: # Application Programming and Management
- ccrel
- ccrel-guide
- creativecommons.github.io
- creativecommons.github.io-source
- ccos-website-source
- creativecommons.org
- data-science-playground
- eng-misc-scripts
Expand Down
4 changes: 2 additions & 2 deletions ccos/norm/branch_protections.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ EXEMPT_REPOSITORIES:
# special purpose repo
- australian-chapter
# exempted for bot pushes to default branch
- creativecommons.github.io-source
- ccos-website-source
# exempted for bot pushes to default branch
- creativecommons.github.io
# special purpose repo
Expand All @@ -25,7 +25,7 @@ EXEMPT_REPOSITORIES:
# REPOSITORY:
# - STATUS_CHECK_NAME
REQUIRED_STATUS_CHECK_MAP:
creativecommons.github.io-source:
ccos-website-source:
- Build and Deploy CC Open Source

# Specify non-exempt repositories and the people, teams, or apps who are
Expand Down
2 changes: 1 addition & 1 deletion ccos/norm/skills.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ vocabulary:
- Sass
- JavaScript/Vue
- JavaScript/Storybook
creativecommons.github.io-source:
ccos-website-source:
- Sass
- Lektor
- Jinja2
Expand Down
2 changes: 1 addition & 1 deletion ccos/teams/get_community_team_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Constants should match 'ccos/data/push_data_via_git.py'
GITHUB_ORGANIZATION = "creativecommons"
GITHUB_REPO_NAME = "creativecommons.github.io-source"
GITHUB_REPO_NAME = "ccos-website-source"

# Constants should match 'push_data_to_ccos.py'
CT_MEMBERS = "community_team_members.json"
Expand Down