Skip to content

Commit

Permalink
CI: reinstate bot reactions
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Dec 8, 2023
1 parent 6c2b75c commit 9a20a25
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/comment-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
post({
owner: context.repo.owner, repo: context.repo.repo,
comment_id: context.payload.comment.id, content: "eyes"})
github-token: ${{ secrets.GH_TOKEN || github.token }}
- name: Tag Commit
run: |
git clone https://${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY} repo
Expand All @@ -39,7 +40,7 @@ jobs:
rm -rf repo
env:
BODY: ${{ github.event.comment.body }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN || github.token }}
- name: React Success
uses: actions/github-script@v7
with:
Expand All @@ -50,3 +51,4 @@ jobs:
post({
owner: context.repo.owner, repo: context.repo.repo,
comment_id: context.payload.comment.id, content: "rocket"})
github-token: ${{ secrets.GH_TOKEN || github.token }}

0 comments on commit 9a20a25

Please sign in to comment.