feat(network-path): add network path updates report #60
This file contains hidden or 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: Commands processor | ||
|
Check failure on line 1 in .github/workflows/commands-handler.yml
|
||
| 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, format('@{0} ', ${{ secrets.CLEN_BOT }})) }} | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v2 | ||
| - name: Checkout release actions | ||
| uses: actions/checkout@v2 | ||
| 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: ${{ secrets.CLEN_BOT }} | ||
| jira-api-key: ${{ secrets.JIRA_API_KEY }} | ||