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>
This commit is contained in:
Dirk Hohndel 2020-04-27 09:04:56 -07:00
parent 906762027b
commit 0c0d65e2cb

View file

@ -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