From 0c0d65e2cbb59f966d494a3cf08c0eeb23c36d3a Mon Sep 17 00:00:00 2001
From: Dirk Hohndel <dirk@hohndel.org>
Date: Mon, 27 Apr 2020 09:04:56 -0700
Subject: [PATCH] GitHub Actions: we can't have an action with no on: clause

So in order to disable an action, I'll just use an unused
repository_dispatch.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
---
 .github/workflows/android-dockerimage.yml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.github/workflows/android-dockerimage.yml b/.github/workflows/android-dockerimage.yml
index cd0d43df6..e34a3a4b2 100644
--- a/.github/workflows/android-dockerimage.yml
+++ b/.github/workflows/android-dockerimage.yml
@@ -8,6 +8,12 @@ name: Android Docker Image CI
 #    - scripts/docker/android-build-container/Dockerfile
 #    - .github/workflows/android-docker*
 
+# this is here to prevent errors about not having an on: clause
+on:
+  repository_dispatch:
+    types:
+    - unused
+
 jobs:
   android-build-container:
     runs-on: ubuntu-latest