Bump websocket-driver from 0.7.4 to 0.7.5 in the npm_and_yarn group across 1 directory #1274
This file contains hidden or 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: Fork PR Welcome | |
| ########################################################################################## | |
| # WARNING! This workflow uses the 'pull_request_target' event. That means that it will # | |
| # always run in the context of the main actualbudget/actual repo, even if the PR is from # | |
| # a fork. This is necessary to get access to a GitHub token that can post a comment on # | |
| # the PR. Be VERY CAREFUL about adding things to this workflow, since forks can inject # | |
| # arbitrary code into their branch, and can pollute the artifacts we download. Arbitrary # | |
| # code execution in this workflow could lead to a compromise of the main repo. # | |
| ########################################################################################## | |
| # See: https://securitylab.github.com/research/github-actions-preventing-pwn-requests # | |
| ########################################################################################## | |
| on: | |
| # See banner above: posts a static welcome comment, no checkout, | |
| # no PR-supplied script execution. | |
| pull_request_target: # zizmor: ignore[dangerous-triggers] | |
| types: [opened, reopened] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| welcome: | |
| name: Post Welcome Message | |
| runs-on: depot-ubuntu-latest | |
| if: github.event.pull_request.head.repo.full_name != github.repository | |
| steps: | |
| - name: Post welcome comment | |
| uses: marocchino/sticky-pull-request-comment@0ea0beb66eb9baf113663a64ec522f60e49231c0 # v3.0.4 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| number: ${{ github.event.pull_request.number }} | |
| header: fork-pr-welcome | |
| hide_and_recreate: true | |
| hide_classify: OUTDATED | |
| message: | | |
| <!-- fork-pr-welcome --> | |
| π Hello contributor! | |
| We would love to review your PR! Before we can do that, please make sure: | |
| - β All CI checks pass | |
| - β The PR is moved from draft to open (if applicable) | |
| - β The "[WIP]" prefix is removed from the PR title | |
| - β The PR description follows the provided template, with all checklist boxes filled in | |
| - β All CodeRabbit code review comments are resolved (if you disagree with anything - reply to the bot with your reasoning so we can read through it). The bot will eventually approve the PR. | |
| - β Any AI usage is disclosed (see our [AI Usage Policy](https://actualbudget.org/docs/contributing/ai-usage-policy)) | |
| A quick note on volume: please get one PR reviewed and merged before opening several more. A stack of simultaneous, similar PRs from one author is reviewed slowly, and low-effort, untested, or undisclosed-AI PRs may be closed without a detailed review. | |
| We do this to reduce the TOIL the core contributor team has to go through for each PR and to allow for speedy reviews and merges. | |
| For more information, please see our [Contributing Guide](https://actualbudget.org/docs/contributing/). |