docs: add workspaces product area #12
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
| # --------------------------------------------------- | |
| # Auto Labeler | |
| # --------------------------------------------------- | |
| # Automatically applies labels to pull requests based | |
| # on the files changed, using rules defined in | |
| # .github/labeler.yaml. | |
| # --------------------------------------------------- | |
| name: auto-labeler | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| labeler: | |
| runs-on: ubuntu-latest | |
| if: ${{ !github.event.pull_request.draft }} | |
| steps: | |
| - uses: actions/labeler@v6 | |
| with: | |
| configuration-path: .github/labeler.yaml |