mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
## Problem Our different repositories had both had code to achieve very similar results in terms of release PR creation, but they were structured differently and had different extensions. This was likely to cause maintainability problems in the long run. ## Summary of changes Switch to a python cli based composite action for creating the release PRs that will also be introduced in our other repos later. ## To Do - [ ] Adjust our docs to reflect the changes from this.
13 lines
201 B
YAML
13 lines
201 B
YAML
name: Create compute release PR
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 7 * * FRI'
|
|
|
|
jobs:
|
|
create-release-pr:
|
|
uses: ./.github/workflows/release.yml
|
|
with:
|
|
component: compute
|
|
secrets: inherit
|