Creating Pull request with GitHub Action

--- name: Testing Gha on: workflow_dispatch: inputs: GIT_BRANCH: description: The git branch to be worked on required: true jobs: test-pr-creation: name: Creates test PR runs-on: ubuntu-latest permissions: pull-requests: write contents: write env: GIT_BRANCH: ${{ inputs.GIT_BRANCH }} steps: - uses: actions/checkout@v4 - name: Updates README run:…