Skip to content

fixed visualization bug on sending and pandadoc only supports 1 uniqu… #121

fixed visualization bug on sending and pandadoc only supports 1 uniqu…

fixed visualization bug on sending and pandadoc only supports 1 uniqu… #121

Workflow file for this run

name: CI Pipeline
on:
pull_request:
types: [opened, synchronize]
branches: [master, staging, dev]
jobs:
frontend:
uses: ./.github/workflows/frontend.yml
with:
node-version: ${{ vars.NODE_VERSION }}
npm-version: ${{ vars.NPM_VERSION }}
php-version: ${{ vars.PHP_VERSION }}
backend:
uses: ./.github/workflows/backendTests.yml
with:
node-version: ${{ vars.NODE_VERSION }}
npm-version: ${{ vars.NPM_VERSION }}
php-version: ${{ vars.PHP_VERSION }}
auto-merge:
needs: [frontend, backend]
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v4
- name: Merge pull request
run: |
gh pr merge --merge "${{ github.event.pull_request.number }}"
env:
GH_TOKEN: ${{ secrets.GH_PAT }}