Skip to content

Commit

Permalink
Add an authenticatedProjectReports setting
Browse files Browse the repository at this point in the history
Setting this to true uses the new project report URL format.
  • Loading branch information
bcomnes committed Apr 5, 2023
1 parent 96395a7 commit 0a392ac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const { socketYmlSchemaV1 } = require('./lib/v1')
* @property {boolean} [projectReportsEnabled] enable/disable Github app project report checks
* @property {boolean} [pullRequestAlertsEnabled] enable/disable GitHub app pull request alert checks
* @property {boolean} [dependencyOverviewEnabled] enable/disable Pull request comments with details about changed dependencies
* @property {boolean} [authenticatedProjectReports] enable/disable authenticated project report URLs
*/

/**
Expand Down Expand Up @@ -53,7 +54,8 @@ const socketYmlSchema = {
},
projectReportsEnabled: { type: 'boolean', nullable: true },
pullRequestAlertsEnabled: { type: 'boolean', nullable: true },
dependencyOverviewEnabled: { type: 'boolean', nullable: true }
dependencyOverviewEnabled: { type: 'boolean', nullable: true },
authenticatedProjectReports: { type: 'boolean', nullable: true }
},
required: [],
additionalProperties: false,
Expand Down

0 comments on commit 0a392ac

Please sign in to comment.