File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Library generator
2
+ on : [workflow_dispatch]
3
+ jobs :
4
+
5
+ micro_ros_arduino_generate :
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - uses : actions/checkout@v2
9
+ - name : Get date
10
+ id : date
11
+ run : echo "::set-output name=date::$(date +'%d-%m-%Y %H:%M')"
12
+ - name : Update libraries
13
+ run : |
14
+ docker run --rm -v $(pwd):/arduino_project microros/micro_ros_arduino_builder:latest
15
+ - name : Create Pull Request
16
+ uses : peter-evans/create-pull-request@v3
17
+ with :
18
+ commit-message : update changelog
19
+ title : micro-ROS Library auto-update ${{ steps.date.outputs.date }}
20
+ body : This PR is autogenerated and updates the micro-ROS Arduino library. Close and reopen to trigger CI.
21
+ branch : autoupdate_micro_ros_arduino
22
+ base : foxy
23
+
Original file line number Diff line number Diff line change 1
- name : CI micro_ros_arduino
1
+ name : CI
2
2
3
3
on :
4
4
pull_request :
You can’t perform that action at this time.
0 commit comments