You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2022/08/23 15:34:16 UTC

[buildstream] branch master updated: .github/workflows/merge.yml: Fix up job dependency after rename

This is an automated email from the ASF dual-hosted git repository.

tvb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/buildstream.git


The following commit(s) were added to refs/heads/master by this push:
     new fbb2a4cd6 .github/workflows/merge.yml: Fix up job dependency after rename
     new a136061b9 Merge pull request #1736 from ssssam/sam/merge-workflow-fix
fbb2a4cd6 is described below

commit fbb2a4cd6cf364a3ab46c0ec954b4ecfdd1258a4
Author: Sam Thursfield <sa...@codethink.co.uk>
AuthorDate: Tue Aug 23 17:18:58 2022 +0200

    .github/workflows/merge.yml: Fix up job dependency after rename
    
    Fixes the following error in "Merge actions" workflow:
    
        The workflow is not valid. .github/workflows/merge.yml (Line: 46, Col: 12): Job 'publish_docs' depends on unknown job 'build'.
    
    This is a regression introduced in https://github.com/apache/buildstream/pull/1723
---
 .github/workflows/merge.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml
index d9bf499e2..33d24979f 100644
--- a/.github/workflows/merge.yml
+++ b/.github/workflows/merge.yml
@@ -43,7 +43,7 @@ jobs:
           docs.tgz
 
   publish_docs:
-    needs: build
+    needs: build_docs
     runs-on: ubuntu-18.04
     steps: