Add copyrights #11
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
# Copyright The IETF Trust 2024. All Rights Reserved. | |
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 | |
- uses: actions/checkout@v4 | |
- name: Check changed files | |
env: | |
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} | |
run: perl ./ietf/check-copyright -lv -f ${ALL_CHANGED_FILES}; |