Skip to content

fixes

fixes #7

Workflow file for this run

name: Auto PR om Push
on:
push:
branches: [ dev ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: create pull request
run: gh pr create -B main -H dev --title 'Merge dev into main branch' --body 'Created by Github action'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}