diff --git a/docs/contributing/getting-started.md b/docs/contributing/getting-started.md index 42bd401fc..11a240ce3 100644 --- a/docs/contributing/getting-started.md +++ b/docs/contributing/getting-started.md @@ -51,7 +51,7 @@ Note, how your provider doesn't need to know anything about where the DNS record # Running Github Actions locally -You can also extend the CI workflow which is currently implemented as Github Action within the [workflow](../../.github/workflow) folder. +You can also extend the CI workflow which is currently implemented as Github Action within the [workflow](https://github.com/kubernetes-sigs/external-dns/tree/HEAD/.github/workflows) folder. In order to test your changes before commiting you can leverage [act](https://github.com/nektos/act) to run the Github Action locally. Follow the installation instructions in the nektos/act [README.md](https://github.com/nektos/act/blob/master/README.md). diff --git a/docs/contributing/sources-and-providers.md b/docs/contributing/sources-and-providers.md index 4988cad9a..bdbe94676 100644 --- a/docs/contributing/sources-and-providers.md +++ b/docs/contributing/sources-and-providers.md @@ -25,7 +25,7 @@ All sources live in package `source`. * `ContourIngressRouteSource`: collects all Contour IngressRoutes and returns them as Endpoint objects. The desired DNS name corresponds to the `virtualhost.fqdn` listed within the spec of each IngressRoute object. * `FakeSource`: returns a random list of Endpoints for the purpose of testing providers without having access to a Kubernetes cluster. * `ConnectorSource`: returns a list of Endpoint objects which are served by a tcp server configured through `connector-source-server` flag. -* `CRDSource`: returns a list of Endpoint objects sourced from the spec of CRD objects. For more details refer to [CRD source](../crd-source.md) documentation. +* `CRDSource`: returns a list of Endpoint objects sourced from the spec of CRD objects. For more details refer to [CRD source](crd-source.md) documentation. * `EmptySource`: returns an empty list of Endpoint objects for the purpose of testing and cleaning out entries. ### Providers