ci: auto raise release PRs (#18048)

This commit is contained in:
Ankush Menat 2022-09-06 18:47:34 +05:30 committed by GitHub
parent 5699eadcad
commit 441fcc5159
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

34
.github/workflows/initiate_release.yml vendored Normal file
View file

@ -0,0 +1,34 @@
# This workflow is agnostic to branches. Only maintain on develop branch.
# To add/remove versions just modify the matrix.
name: Create weekly release pull requests
on:
schedule:
# 9:30 UTC => 3 PM IST Tuesday
- cron: "30 9 * * 2"
workflow_dispatch:
permissions:
contents: read
jobs:
release:
name: Release
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: ["13", "14"]
steps:
- uses: octokit/request-action@v2.x
with:
route: POST /repos/{owner}/{repo}/pulls
owner: frappe
repo: frappe
title: "chore: release v${{ matrix.version }}"
body: "Automated weekly release."
base: version-${{ matrix.version }}
head: version-${{ matrix.version }}-hotfix
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}