From b4f4e9b2460e75f36acc281b4cf93815fead758c Mon Sep 17 00:00:00 2001 From: Simon Walenkamp Hansen Date: Wed, 23 Jul 2025 12:47:56 +0200 Subject: [PATCH] Feature: Create trello card when new issue created --- .github/workflows/trello.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/trello.yml diff --git a/.github/workflows/trello.yml b/.github/workflows/trello.yml new file mode 100644 index 0000000..06d63ef --- /dev/null +++ b/.github/workflows/trello.yml @@ -0,0 +1,16 @@ +name: Create Trello Card on Issue +on: + issues: + types: [opened] +jobs: + create_card: + runs-on: ubuntu-latest + steps: + - name: Create Trello card in Weekly Inbound + uses: fjogeleit/http-request-action@v1 + with: + url: 'https://hub.relewise.com/development/services/create-trello-card' + method: 'POST' + username: '${{ secrets.HUB_BASIC_AUTH_USERNAME }}' + password: '${{ secrets.HUB_BASIC_AUTH_PASSWORD }}' + data: '{"title": "Umbraco Integrations: ${{ github.event.issue.title }}", "listId": "6797608aa0eb86a30698134f", "labelIds": ["62547bf8c1f9f669438d8b00"], "description": "A new issue has been created.\n\nIssue URL: ${{ github.event.issue.html_url }}"}' \ No newline at end of file