Skip to content

ci: Add auto-PR #2509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/release-prepare-monthly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: release-prepare-monthly
on:
schedule:
# Runs at midnight UTC on the 1st of every month
- cron: '0 0 1 * *'
workflow_dispatch:
jobs:
create-release-pr:
runs-on: ubuntu-latest
steps:
- name: Check if running on the original repository
run: |
if [ "$GITHUB_REPOSITORY_OWNER" != "parse-community" ]; then
echo "This is a forked repository. Exiting."
exit 1
fi
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get current branch name
id: branch
run: echo "BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_ENV
- name: Generate timestamp
id: timestamp
run: echo "TIMESTAMP=$(date +'%Y%m%d')" >> $GITHUB_ENV
- name: Create new branch
run: |
git checkout -b build/release-${{ env.TIMESTAMP }}
git push origin build/release-${{ env.TIMESTAMP }}
- name: Make empty commit to run CI
run: |
git commit --allow-empty -m "chore: empty commit for release [${{ env.TIMESTAMP }}]"
git push origin build/release-${{ env.TIMESTAMP }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
branch: build/release-${{ env.TIMESTAMP }}
base: release
title: "build: Release"
body: "This is an automated pull request for the monthly release cycle."
draft: false