Fixes #36673 - Fix directory ownership for remote_execution_ssh_user #6973
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Assert Single Commit (non-blocking) | |
on: pull_request | |
permissions: | |
contents: read | |
jobs: | |
build: | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 30 | |
- name: Checkout target branch | |
run: git fetch origin ${{ github.base_ref }} | |
- name: Commit Count Check | |
run: test `git log --oneline --no-merges HEAD ^origin/${{ github.base_ref }} | wc -l ` = 1 | |
runs-on: ubuntu-latest |