Bump @hono/node-server from 1.19.14 to 2.0.10 #174
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: Contribution Policy | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| pr: | |
| description: PR number or all | |
| required: true | |
| default: all | |
| type: string | |
| dry_run: | |
| description: Dry run | |
| required: true | |
| default: true | |
| type: boolean | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| - labeled | |
| - unlabeled | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| check: | |
| if: github.repository == 'mountain-loop/yaak' | |
| name: Check contribution policy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout policy script | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| fetch-depth: 1 | |
| - name: Check contribution policy | |
| uses: actions/github-script@v7 | |
| with: | |
| script: | | |
| const { run } = require("./.github/scripts/check-contribution-policy.js"); | |
| await run({ github, context, core }); |