Skip to content

Commit

Permalink
Merge pull request #219 from Expensify/rocio-HotPick
Browse files Browse the repository at this point in the history
Add HotPick E/E issues to K2 + Shortcut
  • Loading branch information
neil-marcellini authored Dec 23, 2024
2 parents dd7b8fb + 064282c commit 862c197
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#1.3.72
- Included Expensify/Expensify Hot Pick issues to the section with the same name.
- Added `Hot Pick` label to the shortcuts right panel.
- Removed `Ops` label from the shortcuts.

#1.3.71
- Removed the whats app quality section and replaced it with a hot pick section

Expand Down
2 changes: 1 addition & 1 deletion assets/manifest-firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,

"name": "K2 for GitHub",
"version": "1.3.71",
"version": "1.3.72",
"description": "Manage your Kernel Scheduling from directly inside GitHub",

"browser_specific_settings": {
Expand Down
2 changes: 1 addition & 1 deletion assets/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,

"name": "K2 for GitHub",
"version": "1.3.71",
"version": "1.3.72",
"description": "Manage your Kernel Scheduling from directly inside GitHub",

"icons": {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "k2-extension",
"version": "1.3.71",
"version": "1.3.72",
"description": "A Chrome Extension for Kernel Schedule",
"private": true,
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/js/lib/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ function getHotPickIssues() {
query += ' state:open';
query += ' type:issue';
query += ' repo:Expensify/App';
query += ' repo:Expensify/Expensify';
query += ' NOT hold in:title';
query += ' label:\\"Hot Pick\\"';

Expand Down
12 changes: 6 additions & 6 deletions src/js/module/K2pickerarea/K2PickerareaPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ class K2PickerareaPicker extends React.Component {
shortName: 'πŸ’» Engineering',
},
'Integration Server': {
className: `${defaultBtnClass} inactive k2-integration server tooltipped tooltipped-n`,
className: `${defaultBtnClass} inactive k2-integration-server tooltipped tooltipped-n`,
shortName: 'πŸ“€ IS',
},
Design: {
className: `${defaultBtnClass} inactive k2-design`,
shortName: '🎨 Design',
},
Ops: {
className: `${defaultBtnClass} inactive k2-ops`,
shortName: 'πŸ’° Ops',
},
Infra: {
className: `${defaultBtnClass} inactive k2-infra`,
shortName: 'πŸ”₯ Infra',
shortName: '🚨 Infra',
},
External: {
className: `${defaultBtnClass} inactive k2-external`,
shortName: 'πŸ‘₯ External',
},
'Hot Pick': {
className: `${defaultBtnClass} inactive k2-hot-pick`,
shortName: 'πŸ”₯ Hot Pick',
},
};
// eslint-disable-next-line rulesdir/prefer-underscore-method
$('.js-issue-labels .IssueLabel').each((i, el) => {
Expand Down

0 comments on commit 862c197

Please sign in to comment.