Skip to content
Open
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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Think you've found a bug? Let us know!

Security is a top priority for us. If you have encountered a security issue
please responsibly disclose it by following our [security
disclosure](https://circleci.com/docs/2.0/security/) document.
disclosure](https://circleci.com/security/) document.

# Creating an Issue

Expand Down
4 changes: 2 additions & 2 deletions cmd/orb.go
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ func initOrb(opts orbOptions) error {
if vcsProvider == "GitHub" {
iprompt = &survey.Input{
Message: fmt.Sprintf("If your organization is using CircleCI’s GitHub App integration (see %s to check), enter your organization ID found in Organization Settings. If not, enter your organization name as a string.",
"https://circleci.com/docs/github-apps-integration/"),
"https://circleci.com/docs/guides/integration/github-apps-integration/"),
}
}
err = survey.AskOne(iprompt, &ownerName)
Expand Down Expand Up @@ -1668,7 +1668,7 @@ func finalizeOrbInit(ownerName string, vcsProvider string, vcsShort string, name

if !opts.private {
fmt.Printf("Once the first public version is published, you'll be able to see it here: https://circleci.com/developer/orbs/orb/%s/%s\n", namespace, orbName)
fmt.Println("View orb publishing doc: https://circleci.com/docs/2.0/orb-author")
fmt.Println("View orb publishing doc: https://circleci.com/docs/orbs/author/orb-author/")
}

return nil
Expand Down
4 changes: 2 additions & 2 deletions cmd/orb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ var _ = Describe("Orb integration tests", func() {
Expect(err).ShouldNot(HaveOccurred())

Eventually(session.Err).Should(gbytes.Say("Operate on orbs"))
Eventually(session.Err).Should(gbytes.Say("See a full explanation and documentation on orbs here: https://circleci.com/docs/2.0/orb-intro/"))
Eventually(session.Err).Should(gbytes.Say("See a full explanation and documentation on orbs here: https://circleci.com/docs/orbs/use/orb-intro/"))

Eventually(session).Should(gexec.Exit(0))
})
Expand Down Expand Up @@ -110,7 +110,7 @@ var _ = Describe("Orb integration tests", func() {
session, err := gexec.Start(command, GinkgoWriter, GinkgoWriter)
Expect(err).ShouldNot(HaveOccurred())

Consistently(session.Out).ShouldNot(gbytes.Say("See a full explanation and documentation on orbs here: https://circleci.com/docs/2.0/orb-intro/"))
Consistently(session.Out).ShouldNot(gbytes.Say("See a full explanation and documentation on orbs here: https://circleci.com/docs/orbs/use/orb-intro/"))
Eventually(session).Should(gexec.Exit(0))
})
})
Expand Down
4 changes: 2 additions & 2 deletions data/data.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ var Data = DataBag{
OrbDocs string
NewAPIToken string
}{
CLIDocs: "https://circleci.com/docs/2.0/local-cli/",
OrbDocs: "https://circleci.com/docs/2.0/orb-intro/",
CLIDocs: "https://circleci.com/docs/guides/toolkit/local-cli/",
OrbDocs: "https://circleci.com/docs/orbs/use/orb-intro/",
NewAPIToken: "https://circleci.com/account/api",
},
}
2 changes: 1 addition & 1 deletion integration_tests/features/root_commands.feature
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Feature: Root Commands
When I run `circleci help`
Then the output should not contain:
"""
For more help, see the documentation here: https://circleci.com/docs/2.0/local-cli/
For more help, see the documentation here: https://circleci.com/docs/guides/toolkit/local-cli/
"""
And the exit status should be 0

Expand Down