Skip to content

Commit b6a46e7

Browse files
committed
Add committer email so Arduino CLA does not complain
1 parent 83bb8d1 commit b6a46e7

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/cron.yml

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
- name: Build
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }}
31+
GIT_AUTHOR_EMAIL: ${{ secrets.PUSH_EMAIL }}
32+
GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
3133
IDF_BRANCH: ${{ matrix.idf_branch }}
3234
run: bash ./tools/cron.sh
3335
- name: Upload archive

.github/workflows/repository_dispatch.yml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
- name: Handle Event
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }}
16+
GIT_AUTHOR_EMAIL: ${{ secrets.PUSH_EMAIL }}
17+
GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
1618
run: bash ./tools/repository_dispatch.sh
1719
- name: Upload archive
1820
uses: actions/upload-artifact@v1

build.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ if [ $? -ne 0 ]; then exit 1; fi
2020
source ./tools/install-esp-idf.sh
2121
if [ $? -ne 0 ]; then exit 1; fi
2222

23-
TARGETS="esp32c3 esp32s2 esp32"
23+
if [ -z $TARGETS ]; then
24+
TARGETS="esp32c3 esp32s2 esp32"
25+
fi
2426

2527
echo $(git -C $AR_COMPS/arduino describe --all --long) > version.txt
2628

0 commit comments

Comments
 (0)