Fix 500 when initializing an occurrence on a draft recurring meeting … #16830
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |