This is an automated email from the ASF dual-hosted git repository. kezhenxu94 pushed a commit to branch license in repository https://gitbox.apache.org/repos/asf/dolphinscheduler-operator.git
commit 0cb27cee969d41f846245a3d3d1fee52798f27ae Author: kezhenxu94 <[email protected]> AuthorDate: Tue Aug 2 13:59:52 2022 +0800 Add license header checker --- .github/workflows/ci.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..698c02a --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,23 @@ + +name: CI + +on: + pull_request: + push: + +concurrency: + group: dolphinscheduler-operator-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +jobs: + license-header: + if: github.event_name == 'schedule' && github.repository == 'apache/dolphinscheduler-operator' + name: License header + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - uses: actions/checkout@v3 + with: + submodules: true + - name: Check license header + uses: apache/skywalking-eyes/header@211d1623e027fb5779254fbd93871c00ec069a2b
