Skip to content

update workflows

update workflows #12

Workflow file for this run

name: Pull Request
on: push
jobs:
create-pull-request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: create pull request
run: gh pr create --title 'push on branch' --body 'Created by Github action'
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}