We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f6cc8 commit 1289f3aCopy full SHA for 1289f3a
1 file changed
.github/workflows/diff_chromium_branches.yaml
@@ -75,8 +75,19 @@ jobs:
75
upstream_branches: ${{ steps.set-upstream-branches.outputs.upstream_branches }}
76
downstream_branch: ${{ steps.set-downstream-branch.outputs.downstream_branch }}
77
code_ownership: ${{ steps.set-code-ownership.outputs.code_ownership }}
78
+ calculate_diffs_without_upstream:
79
+ needs: initialize-without-upstream
80
+ runs-on: ubuntu-latest
81
+ if: ${{ needs.initialize.outputs.upstream_branches == '' }}
82
+ steps:
83
+ - name: BLAH
84
+ run: |
85
+ set -eux
86
+ echo "hello there's no upstream"
87
calculate_diffs:
88
needs: initialize
89
+ # Check if there's any diff to perform
90
+ if: ${{ needs.initialize.outputs.upstream_branches != '' }}
91
runs-on: ubuntu-latest
92
strategy:
93
fail-fast: false
0 commit comments