From 77951c1e0789508014eb37a5ef36da20a30d9174 Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Thu, 26 Dec 2019 12:57:58 +0100 Subject: [PATCH] Add access token to NuttX Github Action This is necessary for downstream adopters. We want them to run these actions as well so that contributions are already pre-tested. --- .github/workflows/compile_nuttx.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/compile_nuttx.yml b/.github/workflows/compile_nuttx.yml index 79080ed563..5425c60f75 100644 --- a/.github/workflows/compile_nuttx.yml +++ b/.github/workflows/compile_nuttx.yml @@ -22,5 +22,8 @@ jobs: ] steps: - uses: actions/checkout@v1 + with: + token: ${{ secrets.ACCESS_TOKEN }} + submodules: true - name: make ${{ matrix.config }} run: make ${{ matrix.config }}