-
Notifications
You must be signed in to change notification settings - Fork 42
Feature: Custom Actions #38
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
Open
benoror
wants to merge
1
commit into
hubot-archive:master
Choose a base branch
from
benoror:custom-actions
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'm concerned about this very narrow path choice – would it be possible to use a user-specified path instead?
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.
@parkr this a relative path to the user's hubot repo, therefore if the repo is called
my-hubot
then this particular file (github-repo-event-notifier.coffee
) would be located under:Hence the path.
Nevertheless it would be possible to refactor it using built-in "path" api, and let the user specify the last
dir/file
part (scripts/github/custom-actions
in this case)My only question is, where should the user put that configuration?
Cheers!
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.
Can we always assume that this project will be installed into
my-hubot\node_modules\hubot-github-repo-event-notifier\src
? It seems like a very fragile assumption to me as node modules are nested if they are a dependency of a dependency.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.
@parkr would you be open to use something like findup-sync?
That's the closest thing I found regarding accessing
node_module
's parent directories.Let me know if you are aware of another method/lib, otherwise I can update the PR. 😄
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.
@benoror That would make sense. Would it perhaps be better to go around all the automated inclusion (i.e. including this project name in
external-scripts.json
)? The user would add it to theirpackage.json
, then write a custom file inscripts/
which includes this project and hooks it up properly for Hubot to include. That way you could add your own handlers without it being really convoluted and "magical."