Skip to content

Commit

Permalink
Merge pull request #7515 from JoshuaKGoldberg/bluesky-data
Browse files Browse the repository at this point in the history
feat: add bluesky data field for conferences
  • Loading branch information
cgrail authored Jan 24, 2025
2 parents 8a09fd0 + 91d0768 commit d9bb679
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/suggest-new-location.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If you would like to suggest a conference, please also list the details of the c
- topic:
- language:
- is the conference onsite or hybrid?
- twitter/mastodon handle
- bluesky/mastodon/twitter handle
- code of conduct

Is there anything else we can help you with?
5 changes: 3 additions & 2 deletions scripts/config/validFields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default [
'cocUrl',
'cfpUrl',
'cfpEndDate',
'bluesky',
'mastodon',
'twitter',
'github',
'mastodon'
'github'
];
5 changes: 3 additions & 2 deletions scripts/reorderConferencesByDate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ Object.keys(conferencesJSON).forEach(year => {
cocUrl: mergedConference.cocUrl,
cfpUrl: mergedConference.cfpUrl,
cfpEndDate: mergedConference.cfpEndDate,
twitter: mergedConference.twitter,
bluesky: mergedConference.bluesky,
github: mergedConference.github,
mastodon: mergedConference.mastodon
mastodon: mergedConference.mastodon,
twitter: mergedConference.twitter
};
return conference;
});
Expand Down
3 changes: 2 additions & 1 deletion scripts/utils/Conference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export interface Conference {
cocUrl: string;
cfpUrl: string;
cfpEndDate: string;
twitter: string;
bluesky: string;
github: string;
mastodon: string;
twitter: string;
}

0 comments on commit d9bb679

Please sign in to comment.