1
0
Fork 0
mirror of synced 2024-09-10 14:35:47 +12:00
budibase/.github/workflows/deploy-featurebranch.yml

22 lines
514 B
YAML
Raw Normal View History

name: deploy-featurebranch
on:
pull_request:
branches:
- develop
2023-10-07 00:02:17 +13:00
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2023-10-13 20:37:04 +13:00
- uses: peter-evans/repository-dispatch@v2
env:
2023-09-26 05:00:00 +13:00
PAYLOAD_BRANCH: ${{ github.head_ref }}
2023-10-11 22:12:14 +13:00
PAYLOAD_PR_NUMBER: ${{ github.event.pull_request.number }}
with:
repository: budibase/budibase-deploys
event: featurebranch-qa-deploy
2023-10-13 20:37:04 +13:00
token: ${{ secrets.GH_ACCESS_TOKEN }}