17 lines
346 B
YAML
17 lines
346 B
YAML
|
name: 'Check submodules'
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
protobuf:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: 'Checkout code'
|
||
|
uses: actions/checkout@v2
|
||
|
- name: 'Check submodule commit branch'
|
||
|
uses: jtmullen/submodule-branch-check-action@v1
|
||
|
with:
|
||
|
path: assets/protobuf
|
||
|
branch: dev
|
||
|
fetch_depth: 50
|