Skip to content

Run the v4 modules through clang-tidy's modernizing checks. #123

Run the v4 modules through clang-tidy's modernizing checks.

Run the v4 modules through clang-tidy's modernizing checks. #123

Workflow file for this run

name: Update the module list
on:
- push
jobs:
build:
if: github.repository == 'inspircd/inspircd-contrib'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Regenerate the module list
run: ./regen-modules
- name: Commit the updated module list
run: |
git config --global user.name "InspIRCd Robot"
git config --global user.email "noreply@inspircd.org"
git add modules.lst
git commit --message "Regenerate the module list." || true
- name: Push the updated module list
run: git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git ${{ github.ref }}