Add project-management meta-model #6
Workflow file for this run
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@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node SDK | |
uses: actions/setup-node@v3 | |
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 |