diff --git a/.circleci/config.yml b/.circleci/config.yml index 6887459..b939e9c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 setup: true orbs: - orb-tools: circleci/orb-tools@11 + orb-tools: circleci/orb-tools@12 filters: &filters tags: @@ -20,18 +20,18 @@ workflows: # release dev version of orb, for testing & possible publishing. # orb will be published as dev:alpha and dev:${CIRCLE_SHA1:0:7}. - orb-tools/publish: - enable-pr-comment: false + enable_pr_comment: false filters: *filters - orb-name: codecov/codecov - pub-type: dev - vcs-type: << pipeline.project.type >> + orb_name: codecov/codecov + pub_type: dev + vcs_type: << pipeline.project.type >> requires: [orb-tools/lint, orb-tools/review, orb-tools/pack] # trigger an integration workflow to test the # dev:${CIRCLE_SHA1:0:7} version of your orb - orb-tools/continue: filters: *filters - pipeline-number: << pipeline.number >> - vcs-type: << pipeline.project.type >> + orb_name: codecov/codecov + pipeline_number: << pipeline.number >> requires: [orb-tools/publish] - + vcs_type: << pipeline.project.type >> diff --git a/.circleci/test-deploy.yml b/.circleci/test-deploy.yml index 6e40532..8753a36 100644 --- a/.circleci/test-deploy.yml +++ b/.circleci/test-deploy.yml @@ -143,11 +143,9 @@ workflows: filters: *filters - test-frontend: filters: *filters - # - test-alpine: # filters: *filters # requires: [test-backend, test-frontend] - - test-linux: filters: *filters requires: [test-backend, test-frontend] diff --git a/.github/workflows/enforce-license-compliance.yml b/.github/workflows/enforce-license-compliance.yml new file mode 100644 index 0000000..86be741 --- /dev/null +++ b/.github/workflows/enforce-license-compliance.yml @@ -0,0 +1,14 @@ +name: Enforce License Compliance + +on: + pull_request: + branches: [main, master] + +jobs: + enforce-license-compliance: + runs-on: ubuntu-latest + steps: + - name: 'Enforce License Compliance' + uses: getsentry/action-enforce-license-compliance@57ba820387a1a9315a46115ee276b2968da51f3d # main + with: + fossa_api_key: ${{ secrets.FOSSA_API_KEY }}