4.x stable #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify Files modify | |
on: | |
pull_request_target: | |
types: [opened, synchronize] | |
permissions: | |
contents: read | |
jobs: | |
verify: | |
permissions: | |
pull-requests: write # for actions-cool/verify-files-modify to update status of PRs | |
runs-on: ubuntu-latest | |
steps: | |
- name: verify-version | |
uses: actions-cool/verify-files-modify@v1 | |
with: | |
forbid-paths: '.github/, scripts/' | |
forbid-files: 'CHANGELOG.zh-CN.md, CHANGELOG.en-US.md, LICENSE' | |
skip-verify-authority: 'write' | |
skip-label: 'skip-verify-files' | |
assignees: 'afc163, zombieJ, xrkffgg, MadCcc' | |
comment-mark: 'version' | |
comment: | | |
Hi @${{ github.event.pull_request.user.login }}. Thanks for your contribution. The path `.github/` or `scripts/` and `CHANGELOG` is only maintained by team members. This current PR will be closed and team members will help on this. | |
close: true | |
set-failed: false | |
- name: verify-less | |
uses: actions-cool/verify-files-modify@v1 | |
with: | |
forbid-files: 'components/style/themes/default.less' | |
skip-verify-authority: 'admin' | |
comment-mark: 'less' | |
comment: | | |
🚨 Hi @${{ github.event.pull_request.user.login }}. Thanks for your contribution, as the `default.less` file is currently being upgraded, changes are not recommended. | |
🚨 你好,@${{ github.event.pull_request.user.login }}。感谢你的贡献,由于 `default.less` 文件近期处于升级状态,不建议进行更改。 | |
close: false | |
set-failed: false |