chore(deps): update dependency asgiref to v3.8.0 #675
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-assets: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Run test | |
uses: tj-actions/remark@v3 | |
- name: Verify Changed files | |
uses: tj-actions/verify-changed-files@v19 | |
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@v6 | |
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 doc assets | |
run: | | |
cp -f README.md docs/README.md | |
cp -f CHANGELOG.md docs/CHANGELOG.md | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6.0.2 | |
with: | |
commit-message: Synced README changes to docs | |
committer: github-actions[bot] <github-actions[bot]@users.noreply@github.com> | |
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 |