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

17 lines
383 B
YAML

name: Merge to Live
permissions:
contents: read
pull-requests: write
on:
schedule:
- cron: "0 8 * * *"
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 }}