Skip to content

weekly PR

weekly PR #2

Workflow file for this run

on:
schedule:
- cron: '0 0 * * THU'
name: weekly PR
jobs:
createPullRequest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: create pull request
run: gh pr create -B main -H develop --title 'Weekly merge to develop' --body 'Created by Github action'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}