Skip to content

[OP-9533] Translation error in "add work package" macro in WYSWIG (#2… #16831

[OP-9533] Translation error in "add work package" macro in WYSWIG (#2…

[OP-9533] Translation error in "add work package" macro in WYSWIG (#2… #16831

name: continuous-delivery
on:
push:
branches:
- dev
- release/*
- stable/*
permissions:
contents: read
jobs:
trigger_downstream_workflow:
permissions:
contents: none
if: github.repository == 'opf/openproject' && github.ref_type == 'branch'
runs-on: ubuntu-latest
steps:
- name: Trigger Flavours workflow
env:
TOKEN: ${{ secrets.OPENPROJECTCI_FLAVOUR_TRIGGER_TOKEN }}
REPOSITORY: opf/openproject-flavours
WORKFLOW_ID: ci.yml
REF_NAME: ${{ github.ref_name }}
THIS_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
run: |
PAYLOAD=$(jq -n --arg ref "$REF_NAME" --arg triggered_by_url "$THIS_RUN_URL" \
'{"ref": "dev", "inputs": {"ref": $ref, "triggered_by_url": $triggered_by_url}}')
curl -i --fail-with-body -H"authorization: Bearer $TOKEN" \
-XPOST -H"Accept: application/vnd.github.v3+json" \
https://api.github.com/repos/$REPOSITORY/actions/workflows/$WORKFLOW_ID/dispatches \
-d "$PAYLOAD"