Skip to content

Commit

Permalink
feat: add abilityu to call merge action on pr page
Browse files Browse the repository at this point in the history
  • Loading branch information
Digitable-Head committed Jun 2, 2022
1 parent c856b42 commit 2eebb02
Show file tree
Hide file tree
Showing 11 changed files with 10,091 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [['@babel/preset-env', { targets: { node: 'current' } }]]
}
1 change: 1 addition & 0 deletions dist/dist.min.js

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

11 changes: 11 additions & 0 deletions github-panel.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.github-panel {
width: 200px;
height: 200px;
border: 1px solid black;
position: fixed;
background-color: white;
right: 0;
top: 50%;
display: flex;
margin: auto;
}
7 changes: 7 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,12 @@
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://github.com/*"],
"js": ["dist/dist.min.js"],
"css": ["github-panel.css"]
}
],
"manifest_version": 2
}
Loading

0 comments on commit 2eebb02

Please sign in to comment.