Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
markgravity committed Nov 5, 2024
1 parent 191b90a commit 960fe14
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
15 changes: 6 additions & 9 deletions .github/project_workflows/create_release_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ on:
description: "Next version (eg. 1.0.0)"
required: true
type: string
push:
branches:
- feature/557-automate-release-pull-request-creation-process

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -67,15 +64,15 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
branch: chore/bump-version-to-1.1.0
branch: chore/bump-version-to-${{ github.event.inputs.nextVersion }}

- name: Checkout code
uses: actions/checkout@v4
with:
ref: chore/bump-version-to-1.1.0
ref: chore/bump-version-to-${{ github.event.inputs.nextVersion }}

- name: Bump version
run: sed -i "" "s/MARKETING_VERSION = .*/MARKETING_VERSION = 1.1.0;/g" Smashburger.xcodeproj/project.pbxproj
run: sed -i "" "s/MARKETING_VERSION = .*/MARKETING_VERSION = ${{ github.event.inputs.nextVersion }};/g" Smashburger.xcodeproj/project.pbxproj

- name: Set up Git
run: |
Expand All @@ -85,12 +82,12 @@ jobs:
- name: Commit changes
run: |
git add .
git commit -m "[Chore] Bump version to 1.1.0"
git commit -m "[Chore] Bump version to ${{ github.event.inputs.nextVersion }}"
git push origin HEAD
- name: Create pull request
run: |
echo -e "## What happened 👀\n\nBump version to 1.1.0" > body
export body=$(cat body) ; gh pr create --draft -B develop -H chore/bump-version-to-1.1.0 -t '[Chore] Bump version to 1.1.0' -b "$body"
echo -e "## What happened 👀\n\nBump version to ${{ github.event.inputs.nextVersion }}" > body
export body=$(cat body) ; gh pr create --draft -B develop -H chore/bump-version-to-${{ github.event.inputs.nextVersion }} -t '[Chore] Bump version to ${{ github.event.inputs.nextVersion }}' -b "$body"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17 changes: 10 additions & 7 deletions .github/workflows/create_release_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ on:
workflow_dispatch:
inputs:
nextVersion:
description: "Next version (eg. 1.0.0)"
description: "Next version (eg. 1.0.0)x"
required: true
type: string
push:
branches:
- feature/557-automate-release-pull-request-creation-process

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -64,15 +67,15 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
branch: chore/bump-version-to-${{ github.event.inputs.nextVersion }}
branch: chore/bump-version-to-1.1.0

- name: Checkout code
uses: actions/checkout@v4
with:
ref: chore/bump-version-to-${{ github.event.inputs.nextVersion }}
ref: chore/bump-version-to-1.1.0

- name: Bump version
run: sed -i "" "s/MARKETING_VERSION = .*/MARKETING_VERSION = ${{ github.event.inputs.nextVersion }};/g" Smashburger.xcodeproj/project.pbxproj
run: sed -i "" "s/MARKETING_VERSION = .*/MARKETING_VERSION = 1.1.0;/g" Smashburger.xcodeproj/project.pbxproj

- name: Set up Git
run: |
Expand All @@ -82,12 +85,12 @@ jobs:
- name: Commit changes
run: |
git add .
git commit -m "[Chore] Bump version to ${{ github.event.inputs.nextVersion }}"
git commit -m "[Chore] Bump version to 1.1.0"
git push origin HEAD
- name: Create pull request
run: |
echo -e "## What happened 👀\n\nBump version to ${{ github.event.inputs.nextVersion }}" > body
export body=$(cat body) ; gh pr create --draft -B develop -H chore/bump-version-to-${{ github.event.inputs.nextVersion }} -t '[Chore] Bump version to ${{ github.event.inputs.nextVersion }}' -b "$body"
echo -e "## What happened 👀\n\nBump version to 1.1.0" > body
export body=$(cat body) ; gh pr create --draft -B develop -H chore/bump-version-to-1.1.0 -t '[Chore] Bump version to 1.1.0' -b "$body"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 960fe14

Please sign in to comment.