chore(deps): bump the github-action-dependencies group across 1 directory with 2 updates #2733
Workflow file for this run
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: PR review | |
on: [pull_request] | |
permissions: | |
contents: read # Access needed to checkout the repo. | |
issues: read # Needed to retrieve commits on a pull request. | |
pull-requests: write # Write access needed to create a comment. | |
jobs: | |
# Danger is a tool that can help during code reviews. Automate common | |
# code review tasks. https://danger.systems/js/ | |
# TL;DR - it runs script `dangerfile.js` on each pull request. | |
danger: | |
runs-on: ubuntu-latest | |
name: Danger | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run danger | |
run: npx danger@11 ci --dangerfile dangerfile.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |