Skip to content
This repository was archived by the owner on May 9, 2025. It is now read-only.

Commit ad44d1c

Browse files
authored
resolve secret mismatch between repository and flux expectations (#34)
1 parent 5577a79 commit ad44d1c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pkg/providers/gitea/gitea.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
)
2323

2424
const (
25-
tokenKey = "token"
25+
tokenKey = "password"
2626
providerType = "gitea"
2727
defaultDomain = "gitea.com"
2828
)

pkg/providers/github/github.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
)
2222

2323
const (
24-
tokenKey = "token"
24+
tokenKey = "password"
2525
providerType = "github"
2626
defaultDomain = github.DefaultDomain
2727
)

pkg/providers/gitlab/gitlab.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
)
2222

2323
const (
24-
tokenKey = "token"
24+
tokenKey = "password"
2525
providerType = "gitlab"
2626
defaultDomain = gitlab.DefaultDomain
2727
)

0 commit comments

Comments
 (0)