[Snyk] Upgrade pino from 8.9.0 to 8.21.0 #1029
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
# This file configures Reviewpad action to run on Issues and Pull Requests! 🦄 | |
name: Reviewpad | |
on: | |
issues: | |
types: | |
- opened | |
- edited | |
issue_comment: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- edited | |
# These permissions are necessary to automate pull requests from forks. | |
permissions: | |
pull-requests: write | |
issues: write | |
jobs: | |
reviewpad_job: | |
runs-on: ubuntu-latest | |
name: Reviewpad | |
# Don't run reviewpad on automated PRs | |
if: | | |
github.event_name != 'pull_request_target' || | |
(github.event.pull_request.title != 'Merge new release into main' && | |
github.event.pull_request.title != 'Merge testimonial into main' && | |
github.event.pull_request.title != 'Merge formatting into main') | |
steps: | |
- name: Reviewpad | |
uses: reviewpad/[email protected] | |
with: | |
# Uncomment next line to use your own configuration file 💪 | |
file: reviewpad.yml |