2021-05-17 22:28:30 +00:00
|
|
|
name: CI-pullrequest
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-05-29 01:56:42 +00:00
|
|
|
- dev-v2.6
|
2021-05-17 22:28:30 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Checkout into branch
|
|
|
|
run: git checkout -b staging-pr-workflow
|
|
|
|
|
|
|
|
- name: Pull scripts
|
|
|
|
run: sudo make pull-scripts
|
|
|
|
|
|
|
|
- name: Pull in all relevant branches
|
2021-05-29 01:56:42 +00:00
|
|
|
run: git fetch origin release-v2.6
|
2021-05-17 22:28:30 +00:00
|
|
|
|
|
|
|
- name: Validate
|
|
|
|
run: sudo make validate
|