-
-
Notifications
You must be signed in to change notification settings - Fork 164
Make ofborg able to (un)label issues and PRs #164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, but I can't say much about the consumer part.
ofborg/Cargo.toml
Outdated
@@ -24,6 +24,7 @@ hubcaps = { git = "https://github.com/grahamc/hubcaps.git" } | |||
hyper = "0.10.*" | |||
hyper-native-tls = "0.2.4" | |||
lru-cache = "0.1.1" | |||
nom = "4.0.0-beta3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The carnix expressions should also be updated.
let mut channel = session.open_channel(1).unwrap(); | ||
|
||
// TODO: I have no idea what I'm doing, this is basically github-comment-parser | ||
// adapted in a "let's hope this will work" fashion. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@grahamc Could you take a look at this (mostly the last commit).
Why was this closed? |
I deleted the branch it was being merged in to.
…Sent from my iPhone
On Aug 9, 2018, at 4:09 PM, Timo Kaufmann ***@***.***> wrote:
Why was this closed?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Couldn't the base just be changed then? |
It could but GitHub closed it on my behalf. I didn’t explicitly choose to close this.
…Sent from my iPhone
On Aug 9, 2018, at 6:08 PM, Timo Kaufmann ***@***.***> wrote:
Couldn't the base just be changed then?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub, or mute the thread.
|
I've reopened as #216 ; sorry for not having found time to get back to this yet :) |
This PR adds an
@ofborg label [label-id]
command that tags the PR/issue aslabel
(after alabel-id
→label
translation phase), via a dedicated worker so that response can be instantaneous even if the builders are all in use.Still missing:
Review should be easier commit-by-commit :)
(This builds upon #124)