From 17350ee361bd376491c6fbee0de561512e36de94 Mon Sep 17 00:00:00 2001 From: Antonello Simeon Date: Wed, 11 Dec 2024 17:23:41 +0100 Subject: [PATCH 1/2] CL-3291: adding test dependency_decisions file --- doc/dependency_decisions.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/dependency_decisions.yml diff --git a/doc/dependency_decisions.yml b/doc/dependency_decisions.yml new file mode 100644 index 0000000..9daeafb --- /dev/null +++ b/doc/dependency_decisions.yml @@ -0,0 +1 @@ +test From 28a373f28f014193b748b439788c509d7a89649b Mon Sep 17 00:00:00 2001 From: Antonello Simeon Date: Wed, 11 Dec 2024 17:47:27 +0100 Subject: [PATCH 2/2] CL-3291: first test --- .github/workflows/license_finder.yml | 39 ++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/license_finder.yml diff --git a/.github/workflows/license_finder.yml b/.github/workflows/license_finder.yml new file mode 100644 index 0000000..15321c3 --- /dev/null +++ b/.github/workflows/license_finder.yml @@ -0,0 +1,39 @@ +# Run License Finder + +name: license_finder + +on: + #pull_request: + # types: [ opened, reopened ] + #push: + # # Trigger on any branch push + # branches: + # - '**' # Match any branch + workflow_dispatch: + branches: + - '**' # Match any branch + workflow_call: + +# Setting environment variables which can be used in the entire workflow (only in the current one) +#env: + +jobs: + build_docker: + runs-on: 'ubuntu-latest' + steps: + + # Checking out the GitHub repository on the runner + - name: Checkout + uses: 'actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608' + + # Uses github action to pull docker image and run commands + - name: Run the build process with Docker + uses: 'addnab/docker-run-action@4f65fabd2431ebc8d299f8e5a018d79a769ae185' + with: + username: ${{ vars.LICENSE_FINDER_GITLAB_REGISTRY_USERNAME }} + password: ${{ secrets.LICENSE_FINDER_GITLAB_REGISTRY_PASSWORD }} + registry: registry.gitlab.com + image: crosslend/docker/license-finder/main:latest + run: | + license_finder --help +