GitHub action that pull Github Issues into Trello by simply trigger an IFTTT webhook event. This makes it easy to manage and sync your Github work with a Trello-based workflow. You can customize the board and list name or you can create you own ifttt applet here
Install the dependencies
$ npm install
Most toolkit and CI/CD operations involve async operations so the action is run in an async function.
const core = require('@actions/core');
...
async function run() {
try {
...
}
catch (error) {
core.setFailed(error.message);
}
}
run()
See the toolkit documentation for the various packages.
GitHub Actions will run the entry point from the action.yml. Packaging assembles the code into one file that can be checked in to Git, enabling fast and reliable execution and preventing the need to check in node_modules.
Actions are run from GitHub repos. Packaging the action will create a packaged action in the dist folder.
Run package
npm run package
Since the packaged index.js is run from the dist folder.
git add dist
Users shouldn't consume the action from master since that would be latest code and actions can break compatibility between major versions.
Checkin to the v1 release branch
$ git checkout -b v1
$ git commit -a -m "v1 release"
Just push your action
$ git push origin v1
All set! Your action is now published! 🚀
Update the action.yml with your ifttt event and key for your action. You can now consume the action by referencing the v1 branch
See action.yml
steps:
- uses: awais786327/ifttt-action@v1
with:
event: your-webhook-event
key: your-webhook-secret-key