summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-04-27 09:04:56 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-04-27 09:34:07 -0700
commit0c0d65e2cbb59f966d494a3cf08c0eeb23c36d3a (patch)
tree5ff6acf7812003fb1617a8f61ea4a0ab5228f6a3 /.github
parent906762027b8ca2b1cd0c33d28fea2e6e54743085 (diff)
downloadsubsurface-0c0d65e2cbb59f966d494a3cf08c0eeb23c36d3a.tar.gz
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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/android-dockerimage.yml6
1 files changed, 6 insertions, 0 deletions
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