Add Bruno imports and a file-tree importer API #1132
Workflow file for this run
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 | ||
|
Check warning on line 1 in .github/workflows/contribution-policy.yml
|
||
| 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 }); | ||