Skip to content

Update copy-md.yml

Update copy-md.yml #96

Workflow file for this run

name: Copy MD Files and Create PR
on:
workflow_dispatch:
schedule:
- cron: '0 0,12 * * *'
jobs:
sync-docs-and-create-pr:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: sync-docs-branch
- name: Checkout Sync-Branch
run: |
git fetch --all
git checkout sync-docs-branch
- name: Set Up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: |
yarn install --frozen-lockfile
- name: Run Sync Script
run: |
chmod +x sync_script.sh
./sync_script.sh
- name: Add And Commit
- uses: EndBug/add-and-commit@v9
with:
message: "Update Docs"
- uses: actions/push@v4
with:
repository: cosmos-sdk-docs/sync-docs-branch
ref: sync-docs-branch
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
base: main
branch: sync-docs-branch
title: "Sync Documentation Changes"
body: "Automatically generated by GitHub Actions to sync documentation changes."