Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Update dependencies, including Symfony 3 to 4 #11

Update dependencies, including Symfony 3 to 4

Update dependencies, including Symfony 3 to 4 #11

name: PrestonBot Integration CICD
concurrency:
group: prestonbot-${{ github.ref }}
on:
pull_request:
types: [opened, edited, reopened, synchronize, labeled]
jobs:
prestonbot-integration:
name: Trigger Integration CICD
runs-on: ubuntu-latest
timeout-minutes: 10
if: contains(github.event.pull_request.labels.*.name, 'integration deployment')
steps:
- name: Get tag
shell: bash
id: get_tag
run: echo TAG=$(echo $GITHUB_REF | cut -d / -f 3) >> $GITHUB_OUTPUT
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.PRESTONBOT_CD_PAT }}
repository: ${{ secrets.PRESTONBOT_CD_REPOSITORY }}
event-type: integration_deployment
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "tag": "${{ steps.get_tag.outputs.TAG }}"}'