budibase/.github/workflows/deploy-featurebranch.yml

30 lines
951 B
YAML
Raw Normal View History

name: deploy-featurebranch
on:
pull_request:
2023-12-14 11:04:28 +01:00
types: [
labeled,
2023-12-14 11:14:26 +01:00
# default types below (https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request)
2023-12-14 11:04:28 +01:00
opened,
synchronize,
reopened,
]
jobs:
release:
2023-12-14 10:48:57 +01:00
if: |
2023-12-14 10:52:29 +01:00
(github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'Budibase/budibase') &&
2023-12-14 11:09:04 +01:00
contains(github.event.pull_request.labels.*.name, 'feature-branch')
runs-on: ubuntu-latest
steps:
2024-01-25 09:15:37 +01:00
- uses: actions/checkout@v4
- uses: passeidireto/trigger-external-workflow-action@main
env:
2023-09-25 18:00:00 +02:00
PAYLOAD_BRANCH: ${{ github.head_ref }}
2023-10-11 11:12:14 +02:00
PAYLOAD_PR_NUMBER: ${{ github.event.pull_request.number }}
2024-09-02 13:03:15 +02:00
PAYLOAD_LICENSE_TYPE: "free"
with:
repository: budibase/budibase-deploys
event: featurebranch-qa-deploy
github_pat: ${{ secrets.GH_ACCESS_TOKEN }}