Skip to content

publishToNPM

publishToNPM #7

Workflow file for this run

name: Auto Create PR
on:
workflow_dispatch:
jobs:
create-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install gh CLI
run: |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0
sudo apt-add-repository https://cli.github.com/packages
sudo apt-get update
sudo apt-get install gh
- name: Create Pull Request
run: |
# Create the pull request
gh pr create --base main --head release --title "Merge main into release"