summaryrefslogtreecommitdiff
path: root/.github/workflows/misspell-fixer.yml
blob: 24f8aa1371c247d5f7f75f93809bf9e9e118c817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Misspell fixer
on:
  schedule:
    - cron: '0 0 15 * *'
jobs:
  build:
    runs-on: ubuntu-latest
    env:
      REF_BRANCH: ${{ github.ref }}
    steps:
    - uses: actions/checkout@v2
    - name : Set a couple env variables
      run: |
        echo "::set-env name=DATE::$(date +'%Y-%m-%d')"
        echo "::set-env name=REF_BRANCH::${REF_BRANCH//refs\/heads\//}"
    - name: Whitelist some directories and files
      run: |
        echo "\
        ^./.github/workflows
        ^./.mailmap
        ^./vendor
        ^./make/directive.pm:287:atleast
        ^./src/modules/m_disable.cpp:119:existant
        ^./docs/conf/helpop.conf.example:443:ALLTIME
        ^./docs/conf/helpop.conf.example:551:ALLTIME
        ^./docs/conf/helpop.conf.example:551:alltime
        ^./docs/conf/modules.conf.example:170:Alltime
        ^./docs/conf/modules.conf.example:171:ALLTIME
        ^./docs/conf/modules.conf.example:172:ALLTIME
        ^./docs/conf/modules.conf.example:173:alltime
        ^./docs/conf/opers.conf.example:58:ALLTIME
        ^./src/modules/m_alltime.cpp:31:ALLTIME
        ^./src/modules/m_alltime.cpp:65:ALLTIME\
        " > ${{ runner.workspace }}/inspircd/.misspell-fixer.ignore
    - uses: sobolevn/misspell-fixer-action@master
      with:
        options: '-rvnfuRVD .'
    - uses: peter-evans/create-pull-request@v2.4.4
      with:
        token: ${{ secrets.GITHUB_TOKEN }}
        branch: ${{ env.REF_BRANCH }}+fix-spellings-${{ env.DATE }}
        author: 'InspIRCd Robot <noreply@inspircd.org>'
        commiter: 'InspIRCd Robot <noreply@inspircd.org>'
        commit-message: 'Fixes by misspell-fixer'
        title: 'Typos fix by misspell-fixer'
        reviewers: 'genius3000'