From 1f7185c913c73e2e1f809aea87504e75d5bbb6bf Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Fri, 21 Jul 2023 12:03:56 +0200 Subject: [PATCH] Allow dev builds in forks (#2651) Do not try to bump Home Assistant OS dev channel version in forks. This allows to use the dev pipeline in forks. --- .github/workflows/dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 8535f04c6..1b601889c 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -143,7 +143,7 @@ jobs: bump_version: name: Bump dev channel version - if: ${{ github.event_name == 'workflow_dispatch' }} + if: ${{ github.event_name == 'workflow_dispatch' && github.repository == 'home-assistant/operating-system' }} needs: [ build, prepare ] runs-on: [ "ubuntu-20.04" ]