1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00
budibase/.github/workflows/deploy-featurebranch.yml
2023-11-20 10:07:33 +01:00

22 lines
635 B
YAML

name: deploy-featurebranch
on:
pull_request:
branches:
- master
jobs:
release:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'Budibase/budibase'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: passeidireto/trigger-external-workflow-action@main
env:
PAYLOAD_BRANCH: ${{ github.head_ref }}
PAYLOAD_PR_NUMBER: ${{ github.event.pull_request.number }}
with:
repository: budibase/budibase-deploys
event: featurebranch-qa-deploy
github_pat: ${{ secrets.GH_ACCESS_TOKEN }}