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
25 changes: 25 additions & 0 deletions .github/workflows/pr-creation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Automatically create / update pull request

# run this workflow only on new feature branches, not when they're merged to main
on:
push:
branches:
- "environment/staging-next"
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
create_pr_staging:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
base: environment/staging
branch: environment/staging-next
always-create: true
24 changes: 24 additions & 0 deletions helm-guestbook/.github/workflows/pr-creation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Automatically create / update pull request

# run this workflow only on new feature branches, not when they're merged to main
on:
push:
branches-ignore:
- "main"

permissions:
contents: write
pull-requests: write

jobs:
create_pr_development:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
base: development-next
branch: development-next
author: argocd <[email protected]>
3 changes: 2 additions & 1 deletion helm-guestbook/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

replicaCount: 2

image:
repository: gcr.io/google-samples/gb-frontend
Expand Down