Skip to content

Update subissue comment format to include assignee mention #8

Update subissue comment format to include assignee mention

Update subissue comment format to include assignee mention #8

name: Automatically create pull requests
on:
push:
branches-ignore:
- main
permissions: write-all
jobs:
createPullRequest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create pull request
run: gh pr create --title "$(git branch --show-current)" --body "TBD" --draft
env:
GH_TOKEN: ${{ github.token }}
continue-on-error: true