mirror of
https://github.com/github/codeql.git
synced 2026-02-22 18:03:39 +01:00
24 lines
371 B
YAML
24 lines
371 B
YAML
name: Check overlay annotations
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- 'rc/*'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- 'rc/*'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Check overlay annotations
|
|
run: python config/add-overlay-annotations.py --check java
|
|
|