This is a GitHub Action which contains various automations to assist with project management in a GitHub repository.
| Automation | Description |
|---|---|
| todos | This automation parses for @todo or @TODO comments in code and adds formatted pull request comments for each todo found. When a pull request is merged to the main branch, issues will be created for each @todo in the diff if there is not already an issue for that todo. |
| release | This automation handles automating various parts of a somewhat opinionated release process. |
| assign-milestone | This automation will assign the next milestone to a pull request once it has been approved. |
To use the action, include it in your workflow configuration file:
on: pull_request
jobs:
pull-request-automation:
runs-on: ubuntu-latest
steps:
- uses: woocommerce/automations@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# This can be a comma delimited list of automations to run, in this case we're just executing todos
automations: todosgithub_token: Required. GitHub API token to use for making API requests. This should be stored as a secret in the GitHub repository.automations: Optional. You can include a comma-delimited list of specific automations you want to run if you don't want to use them all in a given workflow.
None.
This will be expanded, but for reference:
- Clone the repo and then
npm install.
- All pushes to trunk will automatically build the
dist/index.jsfile for the action (then commit and push to trunk). So no need to worry about builds. - For releases, make sure you update the examples in the
README.mdif releasing a major version, otherwise just create a release manually (in the future this may get automated for releases).
The design of this repository is setup so that automations can be their own discrete thing (eg. "todos") but still take advantage of various scaffolding and boilerplate when creating a new automation. The following is a rough list of steps to take to create and add a new automation:
- Create a new directory in
lib/automationsthat is the name of your automation. - Your
lib/automationsdirectory must at a minimum export the following from theindex.jsfile in the directory:
module.exports = {
// the name of your automation
name: 'my-automation',
// what github action workflow events your automation reacts to.
events: ['pull_request'],
// what github action workflow event actions your automation reacts to.
actions: ['opened'],
// the runner for your automation.
runner,
};- As noted above, this export must include a
runnerfor your automation. The runner is an async function that will receive two arguments:context(which is the GitHub action context value) andoctokit(which is the GitHub api helper). See more about these two arguments here (they are essentially what gets exposed by the@actions/githubpackage). You can use thetodosrunner as an example. - Finally, in
lib/automations.js, makes sure you import your automation configuration into this file and add it to themoduleNamesarray. So for example, if your automation was setup inlib/automations/my-automation, you would have something like this in the file after your changes:
const todos = require('./automations/todos');
const myAutomation = require('./automations/my-automation');
const moduleNames = [todos, myAutomation];
/**
* @typedef {import('./typedefs').AutomationTask} AutomationTask
*/
/**
* @type {AutomationTask[]}
*/
const automations = moduleNames.map((module) => module);
module.exports = automations;- make sure you list your automation name and a brief description of what it does in the Available Automations section of this readme file.
That's it!
Don't forget to add tests for your automation. There are various helpers available for mocking the context and octokit values (you can view the various todos automation tests for examples).
- Thanks to the work of the Gutenberg team (particularly @aduth) in providing some inspiration for this approach to bundling various automations together.
- The
todosautomation was inspired by this todo probot app. Initial iterations of this action borrowed heavily from the ideas in this app.