-
Notifications
You must be signed in to change notification settings - Fork 8
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
Idea: Run a command on a PR branch #88
Comments
I'll give it a shot this weekend. Which tools would I need to add to the docker image? Go, Node, Make...? |
git, go, node (with npm), make, curl at least. Maybe just use the |
Unlike a backport, which happens on |
Could use a temporary label like |
I'm talking about 2 maintainers triggering a command while we only have 1 git repo in the filesystem (we can't use it concurrently). I wonder if there are locks in javascript |
I don't suppose these action scripts run all within the same process, right? If so, no amount of in-process lock will help, but if the file system is shared between executions, you could put some sort of lockfile into it. |
The bot could accept a mention with a command like
If this exact syntax is matched, check out the branch, run the command, and commit the results with a message
run `make fmt` requested by @silverwind
. Usage should be restricted to maintainer roles and above.The text was updated successfully, but these errors were encountered: