Skip to content
Open
Show file tree
Hide file tree
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
27 changes: 27 additions & 0 deletions .github/workflows/monthly-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Create Release PR

on:
workflow_dispatch:
inputs:
increment:
description: 'Version increment type'
required: true
type: choice
options:
- patch
- minor
- major
default: 'patch'

schedule:
- cron: '0 9 1 * *'

jobs:
create-release-pr:
uses: bosesuneha/azure-action-release-workflows/.github/workflows/monthly_release_pr.yaml@monthly-release-pr-workflow
with:
increment: ${{ inputs.increment || 'patch' }}
base_branch: main
permissions:
contents: write
pull-requests: write
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [5.0.6] - 2026-03-01

- [#19](https://github.com/bosesuneha/k8s-deploy/pull/19) chore: release v5.0.5

## [5.0.5] - 2025-12-10

- [#15](https://github.com/bosesuneha/k8s-deploy/pull/15) Test workflow
- [#14](https://github.com/bosesuneha/k8s-deploy/pull/14) chore: release v5.0.5
- [#13](https://github.com/bosesuneha/k8s-deploy/pull/13) chore: release v5.0.5
- [#8](https://github.com/bosesuneha/k8s-deploy/pull/8) update workflow
- [#7](https://github.com/bosesuneha/k8s-deploy/pull/7) Test workflow

## [5.0.4] - 2025-08-05

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "k8s-deploy-action",
"version": "5.0.4",
"version": "5.0.6",
"author": "Deepak Sattiraju",
"license": "MIT",
"scripts": {
Expand Down