Skip to content

Commit

Permalink
changed guide name
Browse files Browse the repository at this point in the history
  • Loading branch information
kodjomiles committed Jan 15, 2025
1 parent d136e84 commit 46108e6
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/guides/all/create-cloud-resource-using-iac.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ Now we want to write the logic that our action will trigger.

<TabItem value="github">

1. First, let's create the necessary token and secrets. If you've already completed the [scaffold a new service guide](/guides/all/scaffold-a-new-service), you should already have these configured and you can skip this step.
1. First, let's create the necessary token and secrets. If you've already completed the [scaffold a new service guide](/guides/all/scaffold-a-new-repository), you should already have these configured and you can skip this step.

- Go to your [Github tokens page](https://github.com/settings/tokens), create a personal access token with `repo` and `admin:org` scope, and copy it (this token is needed to create a pull-request from our workflow).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ We also need to create the following secrets in our GitHub repository:
- `ORG_ADMIN_TOKEN` - Your GitHub personal access token.
- `BOT_USER_OAUTH_TOKEN` - The Slack app bot token.

If you've already completed the [scaffold a new service guide](/guides/all/scaffold-a-new-service), you should already have the first three configured.
If you've already completed the [scaffold a new service guide](/guides/all/scaffold-a-new-repository), you should already have the first three configured.

### Automation trigger
After setting up the automation backend, we will create the Port automation which will trigger the backend.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/all/delete-repository.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,6 @@ jobs:
## More Relevant Guides
- [Scaffold a new service](/guides/all/scaffold-a-new-service/)
- [Scaffold a new service](/guides/all/scaffold-a-new-repository/)
- [Manage Pull Requests](/guides/all/manage-pull-requests)
- [Create GitHub Secrets](/guides/all/create-github-secret)
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ Our action will create a pull-request in the service's repository, containing a

<TabItem value="github">

1. First, let's create the necessary token and secrets. If you've already completed the [`scaffold a new service guide`](/guides/all/scaffold-a-new-service), you should already have these configured and you can skip this step.
1. First, let's create the necessary token and secrets. If you've already completed the [`scaffold a new service guide`](/guides/all/scaffold-a-new-repository), you should already have these configured and you can skip this step.

- Go to your [Github tokens page](https://github.com/settings/tokens), create a personal access token with `repo` and `admin:org` scope, and copy it (this token is needed to create a pull-request from our workflow).

Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions docs/integrations-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This page contains a list of Port's available integrations, organized by the pla
- [GitHub workflow self-service actions](/actions-and-automations/setup-backend/github-workflow/github-workflow.md)
- [Sync repositories, file contents, pull-requests, workflows, teams and more](/build-your-software-catalog/sync-data-to-catalog/git/github/examples/resource-mapping-examples.md)
- [Sync Dependabot](/build-your-software-catalog/sync-data-to-catalog/git/github/examples/resource-mapping-examples.md#mapping-repositories-and-dependabot-alerts)
- [GitHub scaffolder using GitHub workflows](/guides/all/scaffold-a-new-service.md?git-provider=github)
- [GitHub scaffolder using GitHub workflows](/guides/all/scaffold-a-new-repository.md?git-provider=github)
- [GitHub scaffolder using Jenkins pipelines](/guides/all/scaffold-github-using-cookiecutter.md)
- [GitHub scaffolder using FastAPI backend](/actions-and-automations/setup-backend/webhook/examples/software-templates.md)
- [Deploy AWS resources using AWS CloudFormation](/guides/all/deploy-cloudformation-template.md)
Expand All @@ -42,7 +42,7 @@ This page contains a list of Port's available integrations, organized by the pla
- [GitLab advanced file search and search checks](/build-your-software-catalog/sync-data-to-catalog/git/gitlab/mapping_extensions.md)
- [Sync GitLab pipelines](/build-your-software-catalog/custom-integration/api/ci-cd/gitlab-pipelines/gitlab-pipelines.md)
- [GitLab pipeline self-service actions](/actions-and-automations/setup-backend/gitlab-pipeline/gitlab-pipeline.md)
- [GitLab scaffolder](/guides/all/scaffold-a-new-service.md?git-provider=gitlab)
- [GitLab scaffolder](/guides/all/scaffold-a-new-repository.md?git-provider=gitlab)
- [Sync projects, file contents, merge-requests and more](/build-your-software-catalog/sync-data-to-catalog/git/gitlab/examples.md)

### Bitbucket
Expand Down Expand Up @@ -141,10 +141,10 @@ This page contains a list of Port's available integrations, organized by the pla

## Cookiecutter

- [Cookiecutter GitHub scaffolder using GitHub workflows](/guides/all/scaffold-a-new-service.md?git-provider=github)
- [Cookiecutter GitHub scaffolder using GitHub workflows](/guides/all/scaffold-a-new-repository.md?git-provider=github)
- [Cookiecutter GitHub scaffolder using Jenkins pipelines](/guides/all/scaffold-github-using-cookiecutter.md)
- [Cookiecutter GitHub scaffolder using FastAPI backend](/actions-and-automations/setup-backend/webhook/examples/software-templates.md)
- [Cookiecutter GitLab scaffolder using GitLab pipelines](/guides/all/scaffold-a-new-service.md?git-provider=gitlab)
- [Cookiecutter GitLab scaffolder using GitLab pipelines](/guides/all/scaffold-a-new-repository.md?git-provider=gitlab)
- [Cookiecutter Bitbucket scaffolder using Jenkins pipelines](/guides/all/scaffold-bitbucket-using-cookiecutter.md)
- [Cookiecutter Azure DevOps scaffolder using Azure DevOps pipelines](/guides/all/scaffold-repositories-using-cookiecutter.md)

Expand Down
6 changes: 3 additions & 3 deletions src/components/guides-section/consts.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ export const tagsCategoryMap = {

export const availableGuides = [
{
title: "Scaffold a new service",
description: "Create a self-service action that scaffolds a new service",
title: "Scaffold a new repository",
description: "Create a self-service action that scaffolds a new repository",
tags: ["SDLC", "Actions"],
additionalTags: ["BitBucket", "GitHub", "GitLab"],
logos: ["Git"],
category: "Getting started",
link: "/guides/all/scaffold-a-new-service",
link: "/guides/all/scaffold-a-new-repository",
},
{
title: "Ensure production readiness",
Expand Down

0 comments on commit 46108e6

Please sign in to comment.