Sha256: 25755ff0150e656c4a7855db8e3ebf83ca30439a94708ecfe322d450e5db67c5

Contents?: true

Size: 885 Bytes

Versions: 3

Compression:

Stored size: 885 Bytes

Contents

name: Commands processor

on:
  issue_comment:
    types: [created]

jobs:
  process:
    name: Process command
    if: ${{ github.event.issue.pull_request && endsWith(github.repository, '-private') != true && startsWith(github.event.comment.body, '@client-engineering-bot ') }}
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v3
      - name: Checkout release actions
        uses: actions/checkout@v3
        with:
          repository: pubnub/client-engineering-deployment-tools
          ref: v1
          token: ${{ secrets.GH_TOKEN }}
          path: .github/.release/actions
      - name: Process changelog entries
        uses: ./.github/.release/actions/actions/commands
        with:
          token: ${{ secrets.GH_TOKEN }}
          listener: client-engineering-bot
          jira-api-key: ${{ secrets.JIRA_API_KEY }}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pubnub-5.2.0 .github/workflows/commands-handler.yml
pubnub-5.1.2 .github/workflows/commands-handler.yml
pubnub-5.1.1 .github/workflows/commands-handler.yml