Skip to content

Commit

Permalink
change from int64 to int
Browse files Browse the repository at this point in the history
  • Loading branch information
smonero committed Apr 19, 2024
1 parent 390f43f commit 88a6639
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/config/raw/global_cfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type GlobalCfg struct {

type AdhocMode struct {
Repo string `yaml:"repo" json:"repo"`
PRNum int64 `yaml:"pr_num" json:"pr_num"`
PRNum int `yaml:"pr_num" json:"pr_num"`
}

func (t AdhocMode) ToValid() valid.AdhocMode {
Expand Down
2 changes: 1 addition & 1 deletion server/config/valid/global_cfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type GlobalCfg struct {

type AdhocMode struct {
Repo string
PRNum int64
PRNum int
}

type GithubTeam struct {
Expand Down

0 comments on commit 88a6639

Please sign in to comment.