This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
Deleted messages behaviors #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull request handler | |
on: | |
pull_request: | |
branches: [ master ] | |
types: [ opened ] | |
jobs: | |
process-new-pr: | |
name: Handle new pull request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Checkout actions | |
uses: actions/checkout@v3 | |
with: | |
repository: pubnub/client-engineering-deployment-tools | |
ref: v1 | |
token: ${{ secrets.GH_TOKEN }} | |
path: .github/.release/actions | |
- name: Assign pull request reviewers | |
uses: ./.github/.release/actions/actions/utils/assign-reviewers | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
npm-token: ${{ secrets.NPM_TOKEN }} |