Add Malaysia Calendar (#905) #255
This file contains hidden or 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
| name: Update old license links | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| jobs: | |
| license-urls: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Check | |
| run: | | |
| shopt -s globstar | |
| sed -i -e 's|http://quantlib\.org/license\.shtml|https://www.quantlib.org/license.shtml|g' **/*.i **/*.ac **/*.cs **/*.java **/*.py **/*.scala **/*.in | |
| - uses: peter-evans/create-pull-request@v8 | |
| with: | |
| token: ${{ secrets.MACHINE_ACCOUNT_PAT }} | |
| push-to-fork: ${{ vars.MACHINE_ACCOUNT }}/QuantLib-SWIG | |
| branch: update-license-links-${{ github.ref_name }} | |
| delete-branch: true | |
| commit-message: 'Update old license links' | |
| title: 'Update old license links' | |
| author: lballabio[bot] <224797326+lballabio-bot@users.noreply.github.com> |