Skip to content

Commit

Permalink
chore: Update URLs to Github
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnatamo committed Jul 27, 2024
1 parent fbeaf04 commit 79a9304
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .build/Build.Docker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

partial class Build : NukeBuild
{
private string DockerImage => $"ghcr.io/maxnatamo/fetcharr";
private string DockerImage => $"ghcr.io/fetcharr/fetcharr";

private string DockerTag => GitVersion.SemVer;

Expand All @@ -24,8 +24,8 @@ partial class Build : NukeBuild
.SetTag(this.DockerImageTag)
.AddCacheFrom("type=gha")
.AddCacheTo("type=gha,mode=max")
.AddLabel("org.opencontainers.image.source=https://github.com/maxnatamo/fetcharr")
.AddLabel("org.opencontainers.image.url=https://github.com/maxnatamo/fetcharr")
.AddLabel("org.opencontainers.image.source=https://github.com/fetcharr/fetcharr")
.AddLabel("org.opencontainers.image.url=https://github.com/fetcharr/fetcharr")
.AddLabel("org.opencontainers.image.description=Automatically sync Plex watchlist to your Sonarr and Radarr instances.")
.AddLabel("org.opencontainers.image.licenses=MIT")
.SetProcessLogger((outputType, output) =>
Expand Down
2 changes: 1 addition & 1 deletion .build/Build.Release.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ partial class Build : NukeBuild
.Requires(() => this.GithubToken)
.Executes(async () =>
{
ProductHeaderValue productInformation = new("maxnatamo");
ProductHeaderValue productInformation = new("fetcharr");
GitHubTasks.GitHubClient = new GitHubClient(productInformation)
{
Credentials = new Credentials(this.GithubToken)
Expand Down
2 changes: 1 addition & 1 deletion src/API/src/config-schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/maxnatamo/fetcharr/main/src/API/src/config-schema.json",
"$id": "https://raw.githubusercontent.com/fetcharr/fetcharr/main/src/API/src/config-schema.json",
"type": "object",
"additionalProperties": false,
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion src/API/src/config.example.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/maxnatamo/fetcharr/main/src/API/src/config-schema.json
# yaml-language-server: $schema=https://raw.githubusercontent.com/fetcharr/fetcharr/main/src/API/src/config-schema.json

## Fetcharr configuration
## Uncomment the lines that you'd like to change, save and restart Fetcharr for the changes to take effect.
Expand Down

0 comments on commit 79a9304

Please sign in to comment.