Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Prosvetova <anna@prosvetova.me>2022-01-12 17:06:39 +0300
committerGitHub <noreply@github.com>2022-01-12 17:06:39 +0300
commit3fbb97ba2911c2fb032fb4ca314d11f464666135 (patch)
tree07bada0126d072fda3def3195d9183e87f63ddca
parent407f68c08ad2835b5b1e050e45814fdd24675d53 (diff)
CI: check that submodules point to correct branches (#956)
Co-authored-by: あく <alleteam@gmail.com>
-rw-r--r--.github/workflows/check_submodules.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/check_submodules.yml b/.github/workflows/check_submodules.yml
new file mode 100644
index 00000000..db3a3afb
--- /dev/null
+++ b/.github/workflows/check_submodules.yml
@@ -0,0 +1,17 @@
+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 \ No newline at end of file