From c1da51e16cfb5f02a8b1661851b4ba3d488af933 Mon Sep 17 00:00:00 2001 From: dotasek Date: Fri, 4 Aug 2023 16:51:01 -0400 Subject: [PATCH] Create manual.yml --- .github/workflows/manual.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/manual.yml diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml new file mode 100644 index 000000000..0216acc10 --- /dev/null +++ b/.github/workflows/manual.yml @@ -0,0 +1,26 @@ +# This is a basic workflow that is manually triggered + +name: License Check + +on: + workflow_dispatch: + + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "greet" + greet: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - name: Collect module licenses + run: mvn license:add-third-party + - name: Aggregate licenses + run: mvn license:aggregate-add-third-party + - name: Set script permissions + run: chmod u+x .github/workflows/license-check/license-check.sh + - name: Run script + run: .github/workflows/license-check/license-check.sh + continue-on-error: true