Merge pull request #469 from ftsrg/mddimprovements #94
This file contains hidden or 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: Check copyright | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: write-all | |
| concurrency: | |
| group: copyright-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-copyright: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
| - name: Check copyright | |
| uses: ./.github/actions/check-copyright | |
| - name: Comment | |
| if: failure() && github.event_name == 'pull_request' | |
| uses: thollander/actions-comment-pull-request@dadb7667129e23f12ca3925c90dc5cd7121ab57e | |
| continue-on-error: true # if we are in a fork, this will fail, but we don't care (tables will be missing) | |
| with: | |
| comment_tag: 'copyright' | |
| mode: 'recreate' | |
| message: | | |
| :exclamation: Please run `./gradlew spotlessApply` on your branch to fix copyright headers. | |
| - name: Delete Comment | |
| if: github.event_name == 'pull_request' | |
| uses: thollander/actions-comment-pull-request@dadb7667129e23f12ca3925c90dc5cd7121ab57e | |
| continue-on-error: true # if we are in a fork, this will fail, but we don't care (tables will be missing) | |
| with: | |
| comment_tag: 'copyright' | |
| mode: 'delete' |