You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/06/01 02:18:22 UTC

[incubator-nuttx-testing] branch master updated: Fix the warning of undefined input we were using on the build action

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git


The following commit(s) were added to refs/heads/master by this push:
     new 8e4764f  Fix the warning of undefined input we were using on the build action
8e4764f is described below

commit 8e4764f55c128b6b4f9d765dac65397ba10b8b01
Author: Brennan Ashton <ba...@brennanashton.com>
AuthorDate: Sun May 31 15:45:31 2020 -0700

    Fix the warning of undefined input we were using on the build action
---
 .github/actions/ci-container/action.yaml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/actions/ci-container/action.yaml b/.github/actions/ci-container/action.yaml
index f2cc614..15eee82 100644
--- a/.github/actions/ci-container/action.yaml
+++ b/.github/actions/ci-container/action.yaml
@@ -12,6 +12,10 @@
 #
 
 name: ci-container
+inputs:
+  run:  # id of input
+    description: 'Commands to run'
+    required: true
 runs:
   using: 'docker'
   image: 'docker.pkg.github.com/apache/incubator-nuttx-testing/nuttx-ci-linux'