diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml index 3a0357f8..e408a6f2 100644 --- a/.github/workflows/codacy-analysis.yml +++ b/.github/workflows/codacy-analysis.yml @@ -16,16 +16,26 @@ name: Codacy Security Scan on: schedule: - cron: '59 11 27 * *' - push: - branches: [ "master" ] + # push: + # branches: [ "master" ] # pull_request: # # The branches below must be a subset of the branches above # branches: [ "master" ] workflow_run: workflows: [Test Changes] - branches: [ "master" ] types: - completed + workflow_dispatch: + inputs: + logLevel: + description: 'Log level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug permissions: contents: read diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8665992d..bc425d95 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -14,15 +14,25 @@ name: "CodeQL" on: schedule: - cron: '59 10 27 * *' - push: - branches: [ "master" ] + # push: + # branches: [ "master" ] # pull_request: # branches: [ "master" ] workflow_run: workflows: [Test Changes] - branches: [ "master" ] types: - completed + workflow_dispatch: + inputs: + logLevel: + description: 'Log level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug jobs: analyze: diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index cc9d12be..1517a8eb 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -3,9 +3,23 @@ name: release on: release: types: [published] + workflow_dispatch: + inputs: + logLevel: + description: 'Log level' + required: true + default: 'warning' + type: choice + options: + - info + - warning + - debug jobs: pypi: + strategy: + matrix: + python: ['3.10'] runs-on: ubuntu-latest steps: - name: Checkout source code diff --git a/.github/workflows/test-changes.yml b/.github/workflows/test-changes.yml index 6d79f69d..01439065 100644 --- a/.github/workflows/test-changes.yml +++ b/.github/workflows/test-changes.yml @@ -7,7 +7,7 @@ on: push: branches: [ "master" ] pull_request: - types: [opened, reopened, synchronize, ready_for_review, labeled] + types: [opened, reopened, synchronize, ready_for_review] # labeled workflow_dispatch: inputs: logLevel: @@ -19,14 +19,14 @@ on: - info - warning - debug - tags: - description: 'Test scenario tags' - required: false - type: boolean - environment: - description: 'Environment to run tests against' - type: environment - required: true + # tags: + # description: 'Test scenario tags' + # required: false + # type: boolean + # environment: + # description: 'Environment to run tests against' + # type: environment + # required: true jobs: run-guard: diff --git a/requirements-formats.txt b/requirements-formats.txt index 34692330..f203de66 100644 --- a/requirements-formats.txt +++ b/requirements-formats.txt @@ -13,4 +13,5 @@ fastavro==0.24.2 ; python_version < '3.0' gspread>=3.4.0 ; python_version >= '3.4' # version 3.9.2 fails with python3.12 on macos-latest: PyTables/PyTables#1093 -tables ; python_version != '3.12' +tables ; sys_platform != 'darwin' +