Skip to content

Commit

Permalink
Add license header checker
Browse files Browse the repository at this point in the history
  • Loading branch information
kezhenxu94 committed Aug 2, 2022
1 parent c7704e3 commit 0cb27ce
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 0cb27ce

Please sign in to comment.