Some checks failed
Release / Release (push) Has been cancelled
Run acceptance tests / unit-tests (push) Has been cancelled
Run acceptance tests / test-with-output-secrets (connect, ubuntu-latest) (push) Has been cancelled
Run acceptance tests / test-with-output-secrets (service-account, macos-latest) (push) Has been cancelled
Run acceptance tests / test-with-output-secrets (service-account, ubuntu-latest) (push) Has been cancelled
Run acceptance tests / test-with-export-env (connect, ubuntu-latest) (push) Has been cancelled
Run acceptance tests / test-with-export-env (service-account, macos-latest) (push) Has been cancelled
Run acceptance tests / test-with-export-env (service-account, ubuntu-latest) (push) Has been cancelled
Run acceptance tests / test-references-with-ids (connect, ubuntu-latest) (push) Has been cancelled
Run acceptance tests / test-references-with-ids (service-account, macos-latest) (push) Has been cancelled
Run acceptance tests / test-references-with-ids (service-account, ubuntu-latest) (push) Has been cancelled
16 lines
661 B
JavaScript
16 lines
661 B
JavaScript
/** @type {import('semantic-release').GlobalConfig} */
|
|
module.exports = {
|
|
// TODO: This branch is for PR testing purposes; update branch to "main" if we proceed with this PR.
|
|
branches: ["ruetz-automate-releases"],
|
|
// TODO: Remove `dryRun` configuration if we proceed with this PR.
|
|
dryRun: true,
|
|
plugins: [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/github",
|
|
],
|
|
// Use the `https` Git protocol here to prevent semantic-release from erroring
|
|
// on the SSH protocol used in `repository.url` in the package.json file.
|
|
repositoryUrl: "https://github.com/1Password/load-secrets-action.git",
|
|
};
|