Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,9 @@ repository:
# Default: `false`
delete_branch_on_merge: true

# Whether to archive this repository. false will unarchive a previously archived repository.
archived: false

# The following attributes are applied to any repo within the org
# So if a repo is not listed above is created or edited
# The app will apply the following settings to it
Expand Down
5 changes: 2 additions & 3 deletions lib/plugins/repository.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ const ignorableFields = [
'watchers_count',
'language',
'forks_count',
'archived',
'disabled',
'open_issues_count',
'license',
Expand Down Expand Up @@ -254,7 +253,7 @@ module.exports = class Repository {
resArray.push((new NopCommand(this.constructor.name, this.repo, null, `no need to update security for ${repoData.name}`)))
return Promise.resolve(resArray)
}
}
}
}

updateAutomatedSecurityFixes(repoData, resArray) {
Expand Down Expand Up @@ -289,4 +288,4 @@ module.exports = class Repository {
}
}
}
}
}