Skip to content

copyright

copyright #22

Workflow file for this run

name: copyright
on:
schedule:
- cron: '0 3 1 1 *' # 03:00 AM on January 1
jobs:
update-license-year:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v4
- uses: FantasticFiasco/action-update-license-year@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
# don't do `**/*.h` as we vendor in some headers
path: |
**/*.rs
**/*.proto
**/*.c
**/*.edl
assignees: '@mobilecoinfoundation/coredev'
labels: "copyright"
transform: (?<=^\/\/ Copyright \(c\) )(?<from>\d{4})?-?(\d{4})?