Skip to content

Commit

Permalink
Hacktoberfest 2023 support - resolves #9636 (#9637)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgalek authored Oct 5, 2023
1 parent 7749c5e commit 685421f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions services/github/github-hacktoberfest.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ export default class GithubHacktoberfestCombinedStatus extends GithubAuthV4Servi
static category = 'issue-tracking'
static route = {
base: 'github/hacktoberfest',
pattern: ':year(2019|2020|2021|2022)/:user/:repo',
pattern: ':year(2019|2020|2021|2022|2023)/:user/:repo',
queryParamSchema,
}

static examples = [
{
title: 'GitHub Hacktoberfest combined status',
namedParams: {
year: '2022',
year: '2023',
user: 'snyk',
repo: 'snyk',
},
Expand All @@ -73,15 +73,15 @@ export default class GithubHacktoberfestCombinedStatus extends GithubAuthV4Servi
{
title: 'GitHub Hacktoberfest combined status (suggestion label override)',
namedParams: {
year: '2022',
year: '2023',
user: 'tmrowco',
repo: 'tmrowapp-contrib',
},
queryParams: {
suggestion_label: 'help wanted',
},
staticPreview: this.render({
year: '2022',
year: '2023',
suggestedIssueCount: 12,
contributionCount: 8,
daysLeft: 15,
Expand Down

0 comments on commit 685421f

Please sign in to comment.