Skip to content

test review app

test review app #4

Workflow file for this run

name: "Continuous Deployment"
on:
pull_request:
jobs:
get-pr-number:
runs-on: ubuntu-latest
steps:
- name: Get PR Number
run: echo "PR Number is ${{ github.event.number }}"
validation:
uses: ./.github/workflows/fullcheck.yml
deploy-feature-branch:
uses: ./.github/workflows/deploy-to-scalingo-review-app.yml
needs: validation
with:
pull_request_id: ${{ github.event.number }}
secrets:
SCALINGO_API_TOKEN: ${{ secrets.SCALINGO_API_TOKEN }}