Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/diff_chromium_branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,19 @@ jobs:
upstream_branches: ${{ steps.set-upstream-branches.outputs.upstream_branches }}
downstream_branch: ${{ steps.set-downstream-branch.outputs.downstream_branch }}
code_ownership: ${{ steps.set-code-ownership.outputs.code_ownership }}
calculate_diffs_without_upstream:
needs: initialize
runs-on: ubuntu-latest
if: ${{ needs.initialize.outputs.upstream_branches == '' }}
steps:
- name: BLAH
run: |
set -eux
echo "hello there's no upstream"
calculate_diffs:
needs: initialize
# Check if there's any diff to perform
if: ${{ needs.initialize.outputs.upstream_branches != '' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ repos:
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/SortaCookie/actionlint
rev: v1.7.7
hooks:
- id: actionlint
files: ^.github/
- repo: local
hooks:
- id: chromium-pre-commit
Expand Down
Loading