trigger a feature branch on pull request (#11584)

trigger a feature branch on pull request
This commit is contained in:
Jonny McCullagh 2023-08-24 13:52:17 +01:00 committed by GitHub
parent 27bd653b02
commit 826255dfe2
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
name: deploy-featurebranch
on:
pull_request:
branches:
- develop
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: passeidireto/trigger-external-workflow-action@main
env:
BRANCH: ${{ github.head_ref }}
with:
repository: budibase/budibase-deploys
event: featurebranch-qa-deploy
github_pat: ${{ secrets.GH_ACCESS_TOKEN }}