An Action to tag a Teamwork task and move its card when its PR is merged
Optional The ID of the task to mark as complete in Teamwork. If unset, the first line of the PR description will be parsed for a task ID
Required The domain of your Teamwork site. Follows the format .teamwork.com for US sites, or .eu.teamwork.com for EU sites
Required Your Teamwork API key
on:
pull_request:
types: [closed]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: Aetheron/pr-close-teamwork-task@main
with:
domain: company.teamwork.com
api_key: ${{ secrets.TEAMWORK_API_KEY }}