Do not merge until VP PR is released - Update docs to match content changes made in EP vendor portal section #1963
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
| on: | |
| pull_request: | |
| types: [opened] | |
| name: Auto-label new PRs | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/github-script@v8 | |
| with: | |
| github-token: ${{ secrets.DOCS_GH_PAT }} | |
| script: | | |
| const labels = ['type::feature', 'type::docs'] | |
| github.rest.issues.addLabels({ | |
| ...context.repo, | |
| issue_number: context.issue.number, | |
| labels | |
| }) |