Skip to content

Dependency Dashboard #472

Dependency Dashboard

Dependency Dashboard #472

Workflow file for this run

# 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@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde" # v2.9.1
with:
egress-policy: "audit"
- uses: "actions/first-interaction@34f15e814fe48ac9312ccf29db4e74fa767cbab7" # v1.3.0
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://visulima.com/docs/contributing)"
pr-message: "Great! Thank you for taking the time to create your first pull request! Please review the [guidelines](https://visulima.com/docs/contributing)"