feat(navigation): update navigation action spacing #21314
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: PR Bot | |
| on: | |
| pull_request: | |
| branches: [main, rc, dev] | |
| permissions: | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| assign-and-label: | |
| if: github.event.pull_request.user.login != 'dependabot[bot]' && github.event.pull_request.user.login != 'renovate[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: "Assign author" | |
| uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| const action = require('${{ github.workspace }}/.github/scripts/assignPullRequestAuthor.js') | |
| await action({github, context, core}) | |
| - name: "Add commit type label" | |
| uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| const action = require('${{ github.workspace }}/.github/scripts/labelPullRequestWithCommitType.js') | |
| await action({github, context, core}) |