mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-15 17:42:12 +00:00
Merge branch 'master' into Heltec-V1
This commit is contained in:
commit
90f5fade84
24
.github/workflows/update_protobufs.yml
vendored
Normal file
24
.github/workflows/update_protobufs.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
name: "Update protobufs"
|
||||||
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-protobufs:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Update Submodule
|
||||||
|
run: |
|
||||||
|
git pull --recurse-submodules
|
||||||
|
git submodule update --remote --recursive
|
||||||
|
- name: Commit update
|
||||||
|
run: |
|
||||||
|
git config --global user.name 'github-actions'
|
||||||
|
git config --global user.email 'bot@noreply.github.com'
|
||||||
|
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
|
||||||
|
git add proto
|
||||||
|
git commit -m "Update protobuf submodule" && git push || echo "No changes to commit"
|
2
proto
2
proto
@ -1 +1 @@
|
|||||||
Subproject commit 1d3b4806ab5dc4b8ab62063dbb5799ab900464e6
|
Subproject commit 4a64080d160f9219768a4126414d41dc82a3d63c
|
Loading…
Reference in New Issue
Block a user