chore(deps): update dependency django to v5.1.4 #250
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: Sync doc assets. | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run remark | |
uses: tj-actions/remark@v3 | |
- name: Verify Changed files | |
uses: tj-actions/verify-changed-files@v20 | |
id: verify_changed_files | |
with: | |
files: | | |
README.md | |
- name: README.md changed | |
if: steps.verify_changed_files.outputs.files_changed == 'true' | |
run: | | |
echo "README.md has uncommited changes" | |
exit 1 | |
- name: Create Pull Request | |
if: failure() | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
base: "main" | |
title: "Updated README.md" | |
branch: "chore/update-readme" | |
commit-message: "Updated README.md" | |
body: "Updated README.md" | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Copy README | |
run: | | |
cp -f README.md docs/README.md | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
with: | |
commit-message: Synced README changes to docs | |
committer: github-actions[bot] <github-actions[bot]@[email protected]> | |
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | |
branch: chore/update-docs | |
base: main | |
delete-branch: true | |
title: Updated docs | |
body: | | |
Updated docs | |
- Auto-generated by github-actions[bot] | |
assignees: jackton1 | |
reviewers: jackton1 |