Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Usage Reports): add "created_by_email_id" to Offer schema #274

Merged
merged 5 commits into from
Oct 28, 2024

Merge branch 'main' into main

bf4a9b9
Select commit
Loading
Failed to load commit list.
Merged

feat(Usage Reports): add "created_by_email_id" to Offer schema #274

Merge branch 'main' into main
bf4a9b9
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Oct 24, 2024 in 3m 58s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #274 feat(usage reports) add created_by_email_id to offer.
Any changes that have been made to the main branch before the build ran are also included.

Jobs and Stages

This build has five jobs, running in parallel.

Stage 1: Build-Test

This stage passed.

Job Python OS State
1860.1 3.8 Linux passed
1860.2 3.10 Linux passed
1860.3 3.11 Linux passed
1860.4 3.12 Linux passed
1860.5 Detect-Secrets 3.12 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Jammy)
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "stages": [
    {
      "name": "Build-Test",
      "if": "tag IS blank"
    },
    {
      "name": "Semantic-Release",
      "if": "(branch = main) AND (type IN (push, api)) AND (fork = false)"
    },
    {
      "name": "Publish-Release",
      "if": "(tag IS present) AND (fork = false)"
    }
  ],
  "install": [
    "true"
  ],
  "script": [
    "make ci"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Build-Test",
        "python": "3.8"
      },
      {
        "python": "3.10"
      },
      {
        "python": "3.11"
      },
      {
        "python": "3.12"
      },
      {
        "name": "Detect-Secrets",
        "language": "python",
        "python": "3.12",
        "install": [
          "pip install --upgrade \"git+https://github.com/ibm/detect-secrets.git@master#egg=detect-secrets\""
        ],
        "script": [
          "detect-secrets scan --update .secrets.baseline",
          "detect-secrets -v audit --report --fail-on-unaudited --fail-on-live --fail-on-audited-real .secrets.baseline"
        ]
      },
      {
        "stage": "Semantic-Release",
        "language": "node_js",
        "node_js": "22",
        "install": [
          "npm install",
          "pip install --user bump-my-version"
        ],
        "script": [
          "npm run semantic-release"
        ]
      },
      {
        "stage": "Publish-Release",
        "python": "3.8",
        "name": "Publish-To-PyPi",
        "script": [
          "make ci",
          "make publish-deps",
          "make publish-release"
        ]
      }
    ]
  }
}