Update the primer_view_components repo and make small adjustements to… #6216
This file contains 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/* | |
permissions: | |
contents: read | |
jobs: | |
trigger_downstream_workflow: | |
permissions: | |
contents: none | |
if: github.repository == 'opf/openproject' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger SaaS workflow | |
env: | |
TOKEN: ${{ secrets.OPENPROJECT_CI_TOKEN }} | |
REPOSITORY: opf/saas-openproject | |
WORKFLOW_ID: continuous-delivery-saas.yml | |
run: | | |
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 '{"ref": "${{ github.ref }}"}' | |
- name: Trigger Flavours workflow | |
env: | |
TOKEN: ${{ secrets.OPENPROJECT_CI_TOKEN }} | |
REPOSITORY: opf/openproject-flavours | |
WORKFLOW_ID: ci.yml | |
CORE_REF: ${{ github.ref }} | |
run: | | |
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 '{"ref": "dev", "inputs": { "ref" : "$CORE_REF" }}' |