Bump browserify-sign from 4.2.1 to 4.2.2 in /frontend #514
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: Greeting | |
on: | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
greeting: | |
name: Issue a greeting comment upon PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Issue the greeting comment | |
uses: peter-evans/create-or-update-comment@v2 | |
with: | |
token: ${{ secrets.CI_TOKEN }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
Hi @${{ github.event.pull_request.user.login }}. Thanks for your PR. | |
I am @kingmakerbot. | |
You can interact with me issuing a **slash command** in the first line of a **comment**. | |
Currently, I understand the following commands: | |
* `/rebase`: Rebase this PR onto the master branch | |
* `/merge`: Merge this PR into the master branch | |
* `/hold`: Adds hold label to prevent merging with /merge | |
* `/unhold`: Removes the hold label to allow merging with /merge | |
* `/deploy-staging`: Deploy a staging environment to test this PR (the `build-all` flag enables user environments building) | |
* `/undeploy-staging`: Manually undeploy the staging environment | |
Make sure this PR appears in the **${{ github.event.repository.name }} changelog**, adding one of the following **labels**: | |
* `kind/breaking`: :boom: Breaking Change | |
* `kind/feature`: :rocket: New Feature | |
* `kind/bug`: :bug: Bug Fix | |
* `kind/cleanup`: :broom: Code Refactoring | |
* `kind/docs`: :memo: Documentation |