Skip to content

Commit 25e747d

Browse files
authored
Fix get_message_actions response (#141)
fix: fix `get_message_actions` response Fix format which is used to return server data from `get_message_actions` method call. build(github-actions): update command processor target Update name of account to which commands should be sent.
1 parent 713ddb0 commit 25e747d

File tree

18 files changed

+1726
-1113
lines changed

18 files changed

+1726
-1113
lines changed

.github/workflows/commands-handler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
process:
99
name: Process command
10-
if: ${{ github.event.issue.pull_request && endsWith(github.repository, '-private') != true && startsWith(github.event.comment.body, '@client-engineering-bot ') }}
10+
if: ${{ github.event.issue.pull_request && endsWith(github.repository, '-private') != true && startsWith(github.event.comment.body, format('@{0} ', ${{ secrets.CLEN_BOT }})) }}
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository
@@ -23,5 +23,5 @@ jobs:
2323
uses: ./.github/.release/actions/actions/commands
2424
with:
2525
token: ${{ secrets.GH_TOKEN }}
26-
listener: client-engineering-bot
26+
listener: ${{ secrets.CLEN_BOT }}
2727
jira-api-key: ${{ secrets.JIRA_API_KEY }}

.github/workflows/run-tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name: Tests
33
on:
44
push:
55
workflow_dispatch:
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
defaults:
10+
run:
11+
shell: bash
612

713

814
jobs:
@@ -35,11 +41,6 @@ jobs:
3541
bundler-cache: true
3642
- name: Build and run tests for Ruby 2.7.1
3743
run: bundle exec rspec
38-
- name: Setup JRuby
39-
uses: ruby/setup-ruby@v1
40-
with:
41-
ruby-version: jruby
42-
bundler-cache: true
4344
acceptance:
4445
name: Acceptance tests
4546
runs-on: ubuntu-latest

.pubnub.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
---
2-
version: "5.2.0"
2+
version: "5.2.1"
33
changelog:
4+
- date: 2022-12-13
5+
version: v5.2.1
6+
changes:
7+
- type: bug
8+
text: "Fix format which is used to return server data from `get_message_actions` method call."
49
- date: 2022-12-12
510
version: v5.2.0
611
changes:
@@ -649,7 +654,7 @@ sdks:
649654
- x86-64
650655
- distribution-type: package
651656
distribution-repository: RubyGems
652-
package-name: pubnub-5.2.0.gem
657+
package-name: pubnub-5.2.1.gem
653658
location: https://rubygems.org/gems/pubnub
654659
requires:
655660
- name: addressable
@@ -754,8 +759,8 @@ sdks:
754759
- x86-64
755760
- distribution-type: library
756761
distribution-repository: GitHub release
757-
package-name: pubnub-5.2.0.gem
758-
location: https://github.com/pubnub/ruby/releases/download/v5.2.0/pubnub-5.2.0.gem
762+
package-name: pubnub-5.2.1.gem
763+
location: https://github.com/pubnub/ruby/releases/download/v5.2.1/pubnub-5.2.1.gem
759764
requires:
760765
- name: addressable
761766
min-version: 2.0.0

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v5.2.1
2+
December 13 2022
3+
4+
#### Fixed
5+
- Fix format which is used to return server data from `get_message_actions` method call.
6+
17
## v5.2.0
28
December 12 2022
39

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
pubnub (5.2.0)
4+
pubnub (5.2.1)
55
addressable (>= 2.0.0)
66
concurrent-ruby (~> 1.1.5)
77
concurrent-ruby-edge (~> 0.5.0)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.2.0
1+
5.2.1

0 commit comments

Comments
 (0)