Skip to content

Commit

Permalink
fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Apr 3, 2024
1 parent 7f4313e commit 2304001
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/supersetbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
if: >
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@supersetbot'))
permissions:
contents: read
pull-requests: write
issues: write
steps:
- name: Quickly add thumbs up!
uses: actions/github-script@v7
Expand All @@ -28,7 +32,7 @@ jobs:
await github.rest.reactions.createForIssueComment({
owner,
repo,
comment_id: ${{ github.event.comment.id }},
comment_id: context.payload.comment.id,
content: '+1'
});
Expand Down

0 comments on commit 2304001

Please sign in to comment.