diff --git a/.github/workflows/scripts/check-license-header.sh b/.github/workflows/scripts/check-license-header.sh index f3e9ce8..fa512e2 100755 --- a/.github/workflows/scripts/check-license-header.sh +++ b/.github/workflows/scripts/check-license-header.sh @@ -91,6 +91,7 @@ while IFS= read -r file_path; do plist) continue ;; # Plists don't support line comments proto) comment_marker='//' ;; ps1) comment_marker='##' ;; + psm1) comment_marker='##' ;; py) comment_marker='##'; header_prefix=$'#!/usr/bin/env python3\n' ;; rb) comment_marker='##'; header_prefix=$'#!/usr/bin/env ruby\n' ;; sh) comment_marker='##'; header_prefix=$'#!/bin/bash\n' ;;