From bdfc0beb233d15c2e83c59aaa4f5ddb2151c6d45 Mon Sep 17 00:00:00 2001 From: Mandresy RABENJAHARISON Date: Mon, 29 Sep 2025 16:44:43 +0300 Subject: [PATCH] feat: add workflow to create and link branch for new issues --- ...responding Branch of the New Odoo Ticket.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/Create the Corresponding Branch of the New Odoo Ticket.yaml diff --git a/.gitea/workflows/Create the Corresponding Branch of the New Odoo Ticket.yaml b/.gitea/workflows/Create the Corresponding Branch of the New Odoo Ticket.yaml new file mode 100644 index 0000000..4ce2397 --- /dev/null +++ b/.gitea/workflows/Create the Corresponding Branch of the New Odoo Ticket.yaml @@ -0,0 +1,16 @@ +name: Create a new branch and link it back to the issue. + +on: + issues: + types: [opened] + +jobs: + create-branch: + runs-on: node1-runner-timesheet1 + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Create a New Branch and Link to Issue + uses: ./ \ No newline at end of file