From f1c038395c8c550ea98367b3a70a114724489a34 Mon Sep 17 00:00:00 2001 From: Walter Huf Date: Mon, 8 Apr 2024 19:38:09 -0700 Subject: [PATCH] Create PRs to update to upstream releases --- .github/workflows/merge_from_upstream.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/merge_from_upstream.yaml diff --git a/.github/workflows/merge_from_upstream.yaml b/.github/workflows/merge_from_upstream.yaml new file mode 100644 index 000000000..65d3f0065 --- /dev/null +++ b/.github/workflows/merge_from_upstream.yaml @@ -0,0 +1,22 @@ +name: Update to Upstream Release + +on: + schedule: + - cron: "0 12 * * *" + workflow_dispatch: + inputs: {} + +jobs: + autoupdate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + token: ${{ secrets.GITHUB_TOKEN }} + + - uses: fopina/upstream-to-pr@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + upstream-repository: https://github.com/Ashinch/ReadYou + upstream-tag: '\d+\..*' \ No newline at end of file