From b4aac6c5f908aae88c74752ac7a837ed1af08947 Mon Sep 17 00:00:00 2001 From: Marcus Hughes Date: Thu, 11 Jan 2024 14:14:27 -0700 Subject: [PATCH] Create weeklypr.yaml --- .github/workflows/weeklypr.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/weeklypr.yaml diff --git a/.github/workflows/weeklypr.yaml b/.github/workflows/weeklypr.yaml new file mode 100644 index 0000000..29c2b13 --- /dev/null +++ b/.github/workflows/weeklypr.yaml @@ -0,0 +1,13 @@ +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 main' --body 'Created by Github action' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}