Bump prettier from 3.3.3 to 3.4.1 in the dev-dependencies group #133
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: Add todo entries | |
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
issue_commented: | |
# This job only runs for comments on the issue #145 | |
# when the comment comes from me | |
# The id can be found with | |
# curl -i https://api.github.com/repos/statox/blog/issues/[ISSUE_NR] | |
name: Issue comment | |
if: | | |
github.event.sender.login == 'statox' && | |
github.event.issue.id == 1306520145 | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🔀 Checkout | |
uses: actions/checkout@v4 | |
- name: 🚩 Configure node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '14' | |
- name: 🔧 Install and build | |
run: npm ci | |
- name: 💬 Read comment | |
uses: ./.github/actions/add-todo-entry-action | |
with: | |
issueId: ${{ github.event.issue.id }} | |
login: ${{ github.event.sender.login }} | |
commenterId: ${{ github.event.sender.id }} | |
comment: ${{ github.event.comment.body }} |