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 #355

Merged
merged 5 commits into from
Oct 28, 2024

Merge branch 'main' into main

389d6e5
Select commit
Loading
Failed to load commit list.
Merged

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

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

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 #355 feat(usage reports): add CreatedByEmailID 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 four jobs, running in parallel.

Stage 1: Build-Test

This stage passed.

Job Go Python OS State
2284.1 1.21.x Linux passed
2284.2 1.22.x Linux passed
2284.3 1.23.x Linux passed
2284.4 Detect-Secrets 3.12 Linux passed

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Jammy)
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "notifications": {
    "email": [
      {
        "enabled": true
      }
    ]
  },
  "stages": [
    {
      "name": "Build-Test"
    },
    {
      "name": "Semantic-Release",
      "if": "(branch = main) AND (type IN (push, api)) AND (fork = false)"
    }
  ],
  "install": [
    "curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.61.0"
  ],
  "script": [
    "make travis-ci"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Build-Test",
        "language": "go",
        "go": "1.21.x"
      },
      {
        "go": "1.22.x"
      },
      {
        "go": "1.23.x"
      },
      {
        "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": [
          "pip install --user bump-my-version",
          "npm install"
        ],
        "script": [
          "npm run semantic-release"
        ]
      }
    ]
  }
}