We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Would be pretty cool if you got a few things out the box to enrich the task experience with the PR.
For example if you could import a set of functions that let you:
The text was updated successfully, but these errors were encountered:
sounds good @jacktomlinson ;)
At the moment there is two APIS, setDecription and also runCommand. Maybe extending out into a github object might make sense.
setDecription
runCommand
github
Example
module.exports = options => { const { setDescription, github } = options; // adds the label await github.addLabel('test'); // could add a comment await github.addComment('Thanks for the PR') return new Promise(async (resolve, reject) => { // add some custom code here resolve("Everything passed"); }); };
We currently use octokit to integrate with Github. https://octokit.github.io/rest.js/
octokit
So many we could use that to do the things you spoke about
Sorry, something went wrong.
No branches or pull requests
Would be pretty cool if you got a few things out the box to enrich the task experience with the PR.
For example if you could import a set of functions that let you:
The text was updated successfully, but these errors were encountered: