Before posting a batch, run it through the inbox multiplexer and confirm it produces the expected set of messages #388
Workflow file for this run
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: Submodule Pin Check | |
on: | |
pull_request: | |
branches: [ master ] | |
types: [synchronize, opened, reopened] | |
jobs: | |
submodule-pin-check: | |
name: Submodule Pin Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Check all submodules are ancestors of origin/HEAD or configured branch | |
run: ${{ github.workspace }}/.github/workflows/submodule-pin-check.sh | |