Skip to content

Commit

Permalink
chore: update pr_reviewer and assignees to @rudderlabs/sdk-ios (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
1abhishekpandey authored Jun 17, 2024
1 parent 975ce39 commit c3ed790
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Bug report
about: Create a report to help us improve
title: "BUG : <Title>"
labels: bug, open source
assignees: pallabmaiti
assignees: "@rudderlabs/sdk-ios"
---

**Describe the bug**
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/draft-new-release-v2.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Draft new release(v2)

on:
workflow_dispatch
on: workflow_dispatch

jobs:
draft-new-release:
Expand All @@ -18,7 +17,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 16

# In order to make a commit, we need to initialize a user.
# You may choose to write something less generic here if you want, it doesn't matter functionality wise.
- name: Initialize mandatory git config
Expand All @@ -39,7 +38,7 @@ jobs:
git fetch --tags origin
git merge origin/master-v2
current_version=$(jq -r .version package.json)
npx standard-version --skip.commit --skip.tag --skip.changelog
new_version=$(jq -r .version package.json)
git reset --hard
Expand All @@ -53,7 +52,7 @@ jobs:
echo "New release branch name is $branch_name"
git checkout -b "$branch_name"
git push --set-upstream origin "$branch_name"
echo "source_branch_name=$source_branch_name" >> $GITHUB_OUTPUT
echo "branch_name=$branch_name" >> $GITHUB_OUTPUT
echo "new_version=$new_version" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -84,8 +83,8 @@ jobs:
uses: repo-sync/pull-request@v2
with:
source_branch: ${{ steps.create-release.outputs.branch_name }}
destination_branch: 'master-v2'
destination_branch: "master-v2"
github_token: ${{ secrets.PAT }}
pr_title: "chore(release): pulling ${{ steps.create-release.outputs.branch_name }} into master"
pr_body: ":crown: *An automated PR*\n\n${{ steps.finish-release.outputs.commit_summary }}"
pr_reviewer: 'pallabmaiti'
pr_reviewer: "@rudderlabs/sdk-ios"

0 comments on commit c3ed790

Please sign in to comment.