diff options
author | Matt Schatz <genius3000@g3k.solutions> | 2021-02-06 22:46:35 -0700 |
---|---|---|
committer | Matt Schatz <genius3000@g3k.solutions> | 2021-02-06 23:11:01 -0700 |
commit | eab699222082b9af003ac7eedc5ff688cc4c357f (patch) | |
tree | 8bed3ae6a60a8bd440ffd74ab42398ab10aa34f1 /.github | |
parent | d3a7ac87cb9ef8687f7fec09f54a570f9858efb4 (diff) |
Improvements and updates to misspell-fixer.
- Update to v3 of the create-pull-request action.
- Improve the whitelist for directive.pm 'atleast'.
- Whitelist 'eiter' in source and header files.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/misspell-fixer.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/misspell-fixer.yml b/.github/workflows/misspell-fixer.yml index 07994558b..97a2193cb 100644 --- a/.github/workflows/misspell-fixer.yml +++ b/.github/workflows/misspell-fixer.yml @@ -20,8 +20,9 @@ jobs: ^./.github/workflows ^./.mailmap ^./vendor - ^./make/directive.pm:281:atleast + ^./make/directive.pm:.*:atleast ^./src/modules/m_disable.cpp:119:existant + ^.*\.\(cpp\|h\).*eiter$ ALLTIME$ alltime$ Alltime$\ @@ -29,7 +30,7 @@ jobs: - uses: sobolevn/misspell-fixer-action@master with: options: '-rvnfuRVD .' - - uses: peter-evans/create-pull-request@v2.4.4 + - uses: peter-evans/create-pull-request@v3 with: token: ${{ secrets.GITHUB_TOKEN }} branch: ${{ env.REF_BRANCH }}+fix-spellings-${{ env.DATE }} |