Skip to content

Commit

Permalink
Merge pull request #25 from jekyll/ignore-archived-repos-for-project-…
Browse files Browse the repository at this point in the history
…list

Ignore archived repos for project list
  • Loading branch information
parkr committed Oct 4, 2021
2 parents 96223bd + 2597021 commit e8a407a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/generate-project-list/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func main() {
repoInfos := make([]*dashboard.Project, 0, len(repositories))

for _, repository := range repositories {
if !relevantProject(repository.GetName()) {
if !relevantProject(repository.GetName()) || repository.GetArchived() {
continue
}
info := &dashboard.Project{
Expand Down
7 changes: 0 additions & 7 deletions configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,6 @@ var defaultProjects = []*Project{
GemName: "jekyll-mentions",
GlobalRelayID: "MDEwOlJlcG9zaXRvcnkxNjA1Mzk5NA==",
},
{
Name: "jekyll-help",
Nwo: "jekyll/jekyll-help",
Branch: "master",
GemName: "jekyll-help",
GlobalRelayID: "MDEwOlJlcG9zaXRvcnkxODE5MzgzNA==",
},
{
Name: "jekyll-avatar",
Nwo: "jekyll/jekyll-avatar",
Expand Down

0 comments on commit e8a407a

Please sign in to comment.