Skip to content

chore: add README.md #5

chore: add README.md

chore: add README.md #5

name: Update infrastructure-docker submodule
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
schema:
name: Update infrastructure-docker submodule
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: "misarch/infrastructure-docker"
submodules: true
- name: Update submodule
run: |
cd testdata
git checkout ${{ github.sha }}
- uses: peter-evans/create-pull-request@v6
with:
commit-message: Update testdata submodule
branch: update/testdata
token: ${{ secrets.INFRASTRUCTURE_DOCKER_PUSH_SECRET }}
- name: Set to auto merge
run: gh pr merge update/testdata --auto --merge -R misarch/infrastructure-docker
env:
GH_TOKEN: ${{ secrets.INFRASTRUCTURE_DOCKER_PUSH_SECRET }}