[4178] Add ToolbarSettingsActionMenuExtensionPoints #10778
This file contains 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: Pull Request Checks | |
on: | |
pull_request: | |
paths-ignore: | |
- "CHANGELOG.adoc" | |
- "README.adoc" | |
- "doc/**" | |
types: | |
[ | |
opened, | |
synchronize, | |
reopened, | |
labeled, | |
unlabeled, | |
milestoned, | |
demilestoned, | |
] | |
jobs: | |
build: | |
name: Metadata Review | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node SDK | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.7 | |
registry-url: https://npm.pkg.github.com/ | |
- name: Check that the CHANGELOG has been updated | |
env: | |
GITHUB_EVENT: ${{ toJSON(github.event) }} | |
run: node scripts/check-changelog.js | |
- name: Check that the copyright of the modified files has been updated | |
env: | |
GITHUB_EVENT: ${{ toJSON(github.event) }} | |
run: node scripts/check-copyright.js | |
- name: Check that the labels of the pull request are ok | |
env: | |
GITHUB_EVENT: ${{ toJSON(github.event) }} | |
run: node scripts/check-labels.js | |
- name: Check that the milestone of the pull request is ok | |
env: | |
GITHUB_EVENT: ${{ toJSON(github.event) }} | |
run: node scripts/check-milestone.js | |
- name: Check that the TypeScript files do not have an issue | |
env: | |
GITHUB_EVENT: ${{ toJSON(github.event) }} | |
run: node scripts/check-ts.js |