File: copyrights.yml

package info (click to toggle)
quantlib-swig 1.41-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,284 kB
  • sloc: python: 6,056; java: 1,552; cs: 774; makefile: 243; sh: 22
file content (22 lines) | stat: -rw-r--r-- 695 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Update copyright list
on:
  push:
    branches-ignore:
      - 'dependabot/**'
jobs:
  copyrights:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v6
    - name: Check
      run: |
        ./tools/check_copyrights.sh
    - uses: peter-evans/create-pull-request@v8
      with:
        token: ${{ secrets.MACHINE_ACCOUNT_PAT }}
        push-to-fork: ${{ vars.MACHINE_ACCOUNT }}/QuantLib-SWIG
        branch: update-copyright-list-${{ github.ref_name }}
        delete-branch: true
        commit-message: 'Update copyright list in license'
        title: 'Update copyright list in license'
        author: lballabio[bot] <224797326+lballabio-bot@users.noreply.github.com>