Skip to content

Commit

Permalink
fix!: bumped ios version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ami-aman committed Dec 15, 2022
1 parent b7182e0 commit 95f74b9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/pr_lint.yml
Expand Up @@ -4,15 +4,21 @@ on:
pull_request:
types: [opened, reopened, edited, synchronize, labeled]

permissions: read-all # default permission for security is reading, only

jobs:
pr-help:
name: Semantic PR helper
runs-on: ubuntu-latest
permissions:
contents: write # to be able to push code
issues: write # to make comments on issues
pull-requests: write # to make comments on PR
steps:
- name: Semantic PR helper
uses: levibostian/action-semantic-pr@v2
with:
readToken: ${{ secrets.READ_ONLY_BOT_TOKEN }}
writeToken: ${{ secrets.WRITE_ACCESS_BOT_TOKEN }}
readToken: ${{ secrets.GITHUB_TOKEN }}
writeToken: ${{ secrets.GITHUB_TOKEN }}
# Sets rules on the types of commits allowed on a specific branch. Example: {"beta": "fix,docs"} gives a warning on the pull request if a pull request is made into the beta branch with a type thats not fix.
branchTypeWarning: '{"beta": "fix", "main": "fix"}'
4 changes: 2 additions & 2 deletions customerio-reactnative.podspec
Expand Up @@ -16,6 +16,6 @@ Pod::Spec.new do |s|
s.source_files = "ios/**/*.{h,m,mm,swift}"

s.dependency "React-Core"
s.dependency "CustomerIOTracking", '~> 2.0.0-alpha.1'
s.dependency "CustomerIOMessagingInApp", '~> 2.0.0-alpha.1'
s.dependency "CustomerIOTracking", '~> 2.0.0'
s.dependency "CustomerIOMessagingInApp", '~> 2.0.0'
end

0 comments on commit 95f74b9

Please sign in to comment.