From 9c4ecbf4f3ad8bbfdb79884a231dbfa302d698d2 Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Sat, 13 Sep 2025 11:37:56 +0200 Subject: [PATCH 1/2] chore: add an empty root `action.yml` This is modeled after `github/codeql-action`. See: https://github.com/github/codeql-action/blob/main/action.yml --- action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..aeaee5f --- /dev/null +++ b/action.yml @@ -0,0 +1,10 @@ +name: Expo Actions +author: Expo +description: A collection of tools to use Expo in GitHub Actions, see [all available actions](https://github.com/expo/actions#readme) +runs: + using: composite + steps: + - shell: bash + run: | + echo 'This root Expo Action doesn't do anything, see [all available actions](https://github.com/expo/actions#readme)' + exit 1 From ea625014db36d6297017e281d4ecdefd9d934ddc Mon Sep 17 00:00:00 2001 From: Cedric van Putten Date: Sat, 13 Sep 2025 11:42:41 +0200 Subject: [PATCH 2/2] Update action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index aeaee5f..a128c56 100644 --- a/action.yml +++ b/action.yml @@ -6,5 +6,5 @@ runs: steps: - shell: bash run: | - echo 'This root Expo Action doesn't do anything, see [all available actions](https://github.com/expo/actions#readme)' + echo 'This root Expo action doesn't do anything, see [all available actions](https://github.com/expo/actions#readme)' exit 1