Skip to content

Add initial code for app/Program.cs #9

Add initial code for app/Program.cs

Add initial code for app/Program.cs #9

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