fix(deps): update dependency esno to v4 #1294
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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
name: "Greetings" | |
on: ["pull_request", "issues"] # yamllint disable-line rule:truthy | |
permissions: | |
contents: "read" | |
jobs: | |
greeting: | |
permissions: | |
issues: "write" # for actions/first-interaction to comment on first issue | |
pull-requests: "write" # for actions/first-interaction to comment on first PR | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Harden Runner" | |
uses: "step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09" # v2.5.1 | |
with: | |
egress-policy: "audit" | |
- uses: "actions/first-interaction@1d8459ca65b335265f1285568221e229d45a995e" # v1.1.1 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
issue-message: "Awesome! Thank you for taking the time to create your first issue! Please review the [guidelines](https://narrowspark.com/docs/current/contributing)" | |
pr-message: "Great! Thank you for taking the time to create your first pull request! Please review the [guidelines](https://narrowspark.com/docs/current/contributing)" |