mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 17:06:57 -06:00
4bd97c8673
* Drone: add enterprise-init-downstream step * fixes * Add OSS_PULL_REQUEST env variable for downstream builds * sign Drone config * Update .drone.yml * use test grabpl * test without init step * fix downstream branch * unknown branch test * use drone-downstream test image * revert latest changes * update Drone and add GH workflow * fix PR number * Run Enterprise PR check only on PRs targeting main or release branch * update repository dispatch action * remove test data * update grabpl version
27 lines
825 B
YAML
27 lines
825 B
YAML
name: Enterprise PR check
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- 'v[0-9]+.[0-9]+.x'
|
|
jobs:
|
|
dispatch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: "grafana/grafana-github-actions"
|
|
path: ./actions
|
|
ref: main
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions
|
|
- name: Repository Dispatch
|
|
uses: ./actions/repository-dispatch
|
|
with:
|
|
token: ${{ secrets.GH_BOT_ACCESS_TOKEN }}
|
|
repository: grafana/grafana-enterprise
|
|
event_type: oss-pull-request
|
|
client_payload:
|
|
'{"source_branch": "${{ github.head_ref }}", "target_branch": "${{ github.base_ref }}", "pr_number": "${{ github.event.number }}"}'
|