Skip to content

Commit

Permalink
fix(github-actions): fix command handler workflow (#123)
Browse files Browse the repository at this point in the history
Fix how command handler workflow verify whether comment is command for bot or not.
  • Loading branch information
parfeon authored Dec 24, 2022
1 parent 5422aab commit 98db04d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
* @parfeon @CraigLn @jguz-pubnub
.github/* @parfeon @CraigLn
.github/* @parfeon @CraigLn @jguz-pubnub
README.md @techwritermat @kazydek
17 changes: 16 additions & 1 deletion .github/workflows/commands-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,40 @@ name: Commands processor
on:
issue_comment:
types: [created]
defaults:
run:
shell: bash

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)) }}
if: ${{ github.event.issue.pull_request && endsWith(github.repository, '-private') != true
runs-on: ubuntu-latest
steps:
- name: Check referred user
id: user-check
shell: bash
env:
CLEN_BOT: ${{ secrets.CLEN_BOT }}
run: echo "expected-user=${{ startsWith(github.event.comment.body, format('@{0} ', env.CLEN_BOT)) }}" >> $GITHUB_OUTPUT
- name: Regular comment
if: steps.user-check.outputs.expected-user != 'true'
run: echo -e "\033[38;2;19;181;255mThis is regular commit which should be ignored.\033[0m"
- name: Checkout repository
if: steps.user-check.outputs.expected-user == 'true'
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
- name: Checkout release actions
if: steps.user-check.outputs.expected-user == 'true'
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
if: steps.user-check.outputs.expected-user == 'true'
uses: ./.github/.release/actions/actions/commands
with:
token: ${{ secrets.GH_TOKEN }}
Expand Down

0 comments on commit 98db04d

Please sign in to comment.