Skip to content

feat: Basic copyright script #3

feat: Basic copyright script

feat: Basic copyright script #3

Workflow file for this run

name: Copyright years
on: [pull_request, push]
permissions:
contents: read
jobs:
copyright-notice:
runs-on: ubuntu-latest
name: Test changed-files
steps:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
- name: Check changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: perl ./ietf/check-copyright -l -f ${ALL_CHANGED_FILES};