build(deps): bump nanoid from 3.3.7 to 3.3.8 in /docs_new #1
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: Triage | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
permissions: | |
contents: read | |
jobs: | |
pull-requests-comment: | |
name: Comment and Triage | |
# The entire job is skipped for @dependabot | |
if: github.repository == 'kanisterio/kanister' && github.actor != 'dependabot[bot]' | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Comment | |
uses: actions-ecosystem/action-create-comment@e23bc59fbff7aac7f9044bd66c2dc0fe1286f80b # v1.0.2 | |
# Avoid adding a comment when the PR is on the same repo. | |
if: github.event.action == 'opened' && github.event.pull_request.head.repo.fork | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
body: | | |
Thanks for submitting this pull request :tada:. The team will review it soon and get back to you. | |
If you haven't already, please take a moment to review our project [contributing guideline](https://github.com/kanisterio/kanister/blob/master/CONTRIBUTING.md) and [Code of Conduct](https://github.com/kanisterio/kanister/blob/master/CODE_OF_CONDUCT.md) document. | |
- | |
name: Update status in project | |
uses: alex-page/github-project-automation-plus@303f24a24c67ce7adf565a07e96720faf126fe36 # v0.9.0 | |
# This only works for PRs opened in the same repo and not by dependabot. | |
# Other PRs don't get the necessary credentials. | |
if: github.repository == 'kanisterio/kanister' && !github.event.pull_request.head.repo.fork | |
with: | |
repo-token: ${{ secrets.GH_TOKEN }} | |
project: Kanister | |
column: In Progress |