Skip to content

Commit

Permalink
Merge branch 'release/1.3.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
ElonPark committed Mar 13, 2022
2 parents f349114 + f74bdc6 commit f5201a3
Show file tree
Hide file tree
Showing 6 changed files with 104 additions and 5 deletions.
81 changes: 81 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# enable labeler on issues, prs, or both.
enable:
issues: true
prs: true

# comments object allows you to specify a different message for issues and prs
comments:
issues: |
Thanks for opening this issue!
I have applied any labels matching special text in your title and description.
Please review the labels and make any necessary changes.
prs: |
Thanks for the contribution!
I have applied any labels matching special text in your title and description.
Please review the labels and make any necessary changes.
# Labels is an object where:
# - keys are labels
# - values are objects of { include: [ pattern ], exclude: [ pattern ] }
# - pattern must be a valid regex, and is applied globally to
# title + description of issues and/or prs (see enabled config above)
# - 'include' patterns will associate a label if any of these patterns match
# - 'exclude' patterns will ignore this label if any of these patterns match
labels:
# issue
'bug':
include:
- '\bbug[s]?\b'
exclude: []
'help wanted':
include:
- '\bhelp( me)?\b'
exclude:
- '\b\[test(ing)?\]\b'
# PR
'feat':
include:
- '\bfeat\b'
exclude: []
'fix':
include:
- '\bfix\b'
exclude: []
'refactor':
include:
- '\brefactor\b'
exclude: []
'docs':
include:
- '\bdocs\b'
exclude: []
'style':
include:
- '\bstyle\b'
exclude: []
'revert':
include:
- '\brevert\b'
exclude: []
'test':
include:
- '\btest\b'
exclude: []
'ci':
include:
- '\bci\b'
exclude: []
'chore':
include:
- '\bchore\b'
exclude: []
'pref':
include:
- '\bpref\b'
exclude: []
'build':
include:
- '\bbuild\b'
exclude: []
2 changes: 1 addition & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name-template: '$RESOLVED_VERSION 🌈'
name-template: '🚀 $RESOLVED_VERSION'
tag-template: '$RESOLVED_VERSION'
categories:
- title: '🚀 Features'
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "autolabeler"
on:
pull_request:
types: [opened, reopened, synchronize]

jobs:
triage:
runs-on: ubuntu-latest

steps:
- name: Check Labels
id: labeler
uses: jimschubert/labeler-action@v2
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
id: extract_version_name

- uses: release-drafter/release-drafter@v5
with:
publish: true
tag: ${{ steps.extract_version_name.outputs.version }}

- name: Install Cocoapods
run: gem install cocoapods
Expand Down
4 changes: 2 additions & 2 deletions EPLogger.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.3.9;
MARKETING_VERSION = 1.3.10;
PRODUCT_BUNDLE_IDENTIFIER = com.elonparks.EPLogger;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -316,7 +316,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.3.9;
MARKETING_VERSION = 1.3.10;
PRODUCT_BUNDLE_IDENTIFIER = com.elonparks.EPLogger;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
4 changes: 2 additions & 2 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

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

0 comments on commit f5201a3

Please sign in to comment.