-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8bb37ad
commit 8cd07d6
Showing
2 changed files
with
117 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"categories": [ | ||
{ | ||
"title": "## ✨ Features", | ||
"labels": [ | ||
"type: feature" | ||
] | ||
}, | ||
{ | ||
"title": "## 🐛 Bug fixes", | ||
"labels": [ | ||
"type: bug" | ||
] | ||
}, | ||
{ | ||
"title": "## 🧹 Chores", | ||
"labels": [ | ||
"type: chore" | ||
] | ||
}, | ||
{ | ||
"title": "## Others", | ||
"exclude_labels": [ | ||
"type: feature", | ||
"type: bug", | ||
"type: chore", | ||
"type: release" | ||
] | ||
} | ||
], | ||
"max_pull_requests": 200 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Create Release Pull Request | ||
|
||
on: | ||
pull_request | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
create_release_pull_request: | ||
name: Create Release Pull Request | ||
runs-on: macOS-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Bundle install | ||
run: bundle install | ||
|
||
- name: Start Install Script for SwiftUI Template App | ||
run: swift run --package-path Scripts/Swift/iOSTemplateMaker iOSTemplateMaker make --bundle-id-production co.nimblehq.ios.templates --bundle-id-staging co.nimblehq.ios.templates.staging --project-name TemplateApp --interface SwiftUI | ||
|
||
- name: Get release version | ||
run: | | ||
filename=$(find . -maxdepth 1 -name "*.xcodeproj" -exec basename {} .xcodeproj \; | head -n 1) | ||
release_version=$(sed -n 's/.*MARKETING_VERSION *= *\([^;]*\);.*/\1/p' "$filename.xcodeproj/project.pbxproj" | head -n 1 | sed 's/^[^=]*=\s*//' | tr -d ' ') | ||
echo $release_version | ||
echo "RELEASE_VERSION=$release_version" >> "$GITHUB_ENV" | ||
- uses: nimblehq/github-actions-workflows/create_release_pull_request@0.1.10 | ||
with: | ||
release_version: ${{ env.RELEASE_VERSION }} | ||
changelog_configuration: ".github/workflows/config/changelog-config.json" | ||
assignee: bot-nimble | ||
|
||
# create_bump_version_pull_request: | ||
# name: Create Bump Version Pull Request | ||
# runs-on: macos-latest | ||
# timeout-minutes: 30 | ||
# permissions: | ||
# contents: write | ||
# pull-requests: write | ||
# steps: | ||
# - name: Validate Version Input | ||
# run: | | ||
# if ! [[ "${{ github.event.inputs.nextVersion }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then | ||
# echo "Error: nextVersion must follow semantic versioning (e.g., 1.2.3)" | ||
# exit 1 | ||
# fi | ||
# - name: Create Bump Version branch | ||
# uses: peterjgrainger/action-create-branch@v2.2.0 | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# with: | ||
# branch: chore/bump-version-to-${{ github.event.inputs.nextVersion }} | ||
|
||
# - name: Checkout code | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# ref: chore/bump-version-to-${{ github.event.inputs.nextVersion }} | ||
|
||
# - name: Bump version | ||
# run: | | ||
# filename=$(find . -maxdepth 1 -name "*.xcodeproj" -exec basename {} .xcodeproj \; | head -n 1) | ||
# sed -i "" "s/MARKETING_VERSION = .*/MARKETING_VERSION = ${{ github.event.inputs.nextVersion }};/g" $filename.xcodeproj/project.pbxproj | ||
|
||
# - name: Set up Git | ||
# run: | | ||
# git config --global user.name 'Github Actions' | ||
# git config --global user.email 'github-actions@users.noreply.github.com' | ||
|
||
# - name: Commit changes | ||
# run: | | ||
# git add . | ||
# 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 ${{ 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 }} |