Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(rulesets): Repo scope update trying to remove org rulesets #595

Merged
merged 1 commit into from
Feb 28, 2024
Merged
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
18 changes: 10 additions & 8 deletions lib/plugins/rulesets.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,17 @@ module.exports = class Rulesets extends Diffable {
this.log(listOptions)
return this.github.paginate(listOptions)
.then(res => {
const rulesets = res.map(ruleset => {
const getOptions = this.github.request.endpoint.merge('GET /repos/{owner}/{repo}/rulesets/{id}', {
owner: this.repo.owner,
repo: this.repo.repo,
id: ruleset.id,
headers: version
const rulesets = res
.filter(ruleset => ruleset.source_type === 'Repository')
.map(ruleset => {
const getOptions = this.github.request.endpoint.merge('GET /repos/{owner}/{repo}/rulesets/{id}', {
owner: this.repo.owner,
repo: this.repo.repo,
id: ruleset.id,
headers: version
})
return this.github.paginate(getOptions)
})
return this.github.paginate(getOptions)
})
return Promise.all(rulesets).then(res => {
return res ? res.flat(1) : []
})
Expand Down
Loading