AspNetCore.Docs/.github/workflows/merge-live.yml

15 lines
346 B
YAML
Raw Normal View History

name: Merge to Live
permissions:
contents: read
pull-requests: write
on:
workflow_dispatch
jobs:
default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: gh pr create --base live --head main --title "Merge to Live" --body "[AUTOMATED]"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}