Using editor time to clone workspace #28
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
# /************************************************************************************************* | |
# * Copyright 2022-2024 Theai, Inc. dba Inworld AI | |
# * | |
# * Use of this source code is governed by the Inworld.ai Software Development Kit License Agreement | |
# * that can be found in the LICENSE.md file or at https://www.inworld.ai/sdk-license | |
# *************************************************************************************************/ | |
name: Check license header | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
##approved: | |
## if: github.event.review.state == 'approved' | |
## runs-on: ubuntu-latest | |
## steps: | |
## - run: echo "This PR was approved" | |
check_header: | |
##needs: [approved] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check License Header | |
uses: apache/[email protected] | |
with: | |
mode: check |