Skip to content

Handbook: Update Corporate Marketing project URL

Michael Friedrich requested to merge handbook/corp-mktg-project-url into master

Why is this change being made?

Project gitlab-com/marketing/corporate-marketing was moved to another location

The project is now located under GitLab.com / marketing / Corporate Marketing / Corporate Marketing

Things done

First, install gnu-sed via Homebrew.

brew install gnu-sed

This MR contains a 2 way update:

  • Update the project URL with a global sed
cd source/handbook

find . -type f -exec sh -c 'gsed -i "s,https://gitlab.com/gitlab-com/marketing/corporate-marketing,https://gitlab.com/gitlab-com/marketing/corporate_marketing/corporate-marketing,g" "{}"' \;

git checkout changelog.rss
  • Update the issue routing with /-/ in between (new default route)
cd source/handbook

find . -type f -exec sh -c 'gsed -i "s,https://gitlab.com/gitlab-com/marketing/corporate_marketing/corporate-marketing/issues,https://gitlab.com/gitlab-com/marketing/corporate_marketing/corporate-marketing/-/issues,g" "{}"' \;

git checkout changelog.rss

Also fixes a left-over of the sid-evangelism rename @emilie - it would be too much rebase/merge action to move this into a separate MR.

Author Checklist

  • Provided a concise title for the MR
  • Added a description to this MR explaining the reasons for the proposed change, per say-why-not-just-what
  • Assign this change to the correct DRI
    • If the change relates to any part of the project other than updates to content and/or data files (e.g. team.yml) please make sure to ping @gl-static-site-editor in a comment for a review and merge.
    • If the DRI for the page/s being updated isn't immediate clear, then assign it to your manager.
    • If your manager does not have merge rights, please ask someone to merge it AFTER it has been approved by your manager in #mr-buddies

For help with failing pipelines reach out in #mr-buddies in Slack

Merge request reports