Skip to content

Made password reset flow functional and also added username selection(with uniqueness check) on the signup form #6

Made password reset flow functional and also added username selection(with uniqueness check) on the signup form

Made password reset flow functional and also added username selection(with uniqueness check) on the signup form #6

name: Auto-Update Project Structure
on:
pull_request:
types: [closed]
branches: [main]
jobs:
update-structure:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Generate project structure file
run: tree -a -I 'node_modules|.git' -f > project_structure.txt
- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Update project structure (auto)"
branch: main
commit_user_name: "CI Bot"
commit_user_email: "ci-bot@example.com"
commit_author: "CI Bot <ci-bot@example.com>"