1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
name: Keep qldefines.hpp.cfg in sync with original header
on:
push:
branches-ignore:
- 'dependabot/**'
jobs:
sync-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Check
run: |
cp ql/qldefines.hpp ql/qldefines.hpp.cfg
sed -i -e 's|^#if defined(HAVE_CONFIG_H).*$|#if defined(QL_HAVE_CONFIG_H) // Dynamically created by cmake|g' ql/qldefines.hpp.cfg
sed -i -e 's|^/\* install-hook \*/.*$|#cmakedefine QL_HAVE_CONFIG_H|g' ql/qldefines.hpp.cfg
- uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.MACHINE_ACCOUNT_PAT }}
push-to-fork: ${{ vars.MACHINE_ACCOUNT }}/QuantLib
branch: sync-qldefine-${{ github.ref_name }}
delete-branch: true
commit-message: 'Sync qldefines.hpp.cfg with original header'
title: 'Sync qldefines.hpp.cfg with original header'
author: lballabio[bot] <224797326+lballabio-bot@users.noreply.github.com>
|