Skip to content

Add the ircv3_preaway module. #241

Add the ircv3_preaway module.

Add the ircv3_preaway module. #241

Workflow file for this run

name: Update the module list
on:
- push
jobs:
build:
if: github.repository == 'inspircd/inspircd-contrib' && github.ref_name == 'master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Install the Perl dependencies
run: |-
sudo apt install libdigest-sha-perl
- 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 }}