mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
30 lines
701 B
YAML
30 lines
701 B
YAML
name: Validate change notes
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "*/ql/*/change-notes/**/*"
|
|
- ".github/workflows/validate-change-notes.yml"
|
|
branches:
|
|
- main
|
|
- "rc/*"
|
|
pull_request:
|
|
paths:
|
|
- "*/ql/*/change-notes/**/*"
|
|
- ".github/workflows/validate-change-notes.yml"
|
|
|
|
jobs:
|
|
check-change-note:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup CodeQL
|
|
uses: ./.github/actions/fetch-codeql
|
|
|
|
- name: Fail if there are any errors with existing change notes
|
|
|
|
run: |
|
|
codeql pack release --groups cpp,csharp,java,javascript,python,ruby,-examples,-test,-experimental
|