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: allow groups to be specified without a project #443

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .phylum_project
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id: 56f7f1b0-7f63-47a4-9f5e-8194772b2e13
name: phylum-ci
created_at: 2023-12-07T16:29:55.527161-06:00
created_at: 2024-06-28T10:11:12.990575-05:00
group_name: phylum_bot
lockfiles:
depfiles:
- path: ./poetry.lock
type: poetry
4 changes: 4 additions & 0 deletions docs/integrations/azure_pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,10 @@ view the [script options output][script_options] for the latest release.
# for *workspace* manifest files where there is no companion lockfile (e.g., libraries).
- script: phylum-ci --force-analysis --all-deps --depfile Cargo.toml

# Perform analysis as part of a group-owned project.
# A paid account is needed to use groups: https://phylum.io/pricing
- script: phylum-ci --group my_group

# Analyze all dependencies in audit mode, to gain insight without failing builds.
- script: phylum-ci --all-deps --audit

Expand Down
4 changes: 4 additions & 0 deletions docs/integrations/bitbucket_pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,10 @@ view the [script options output][script_options] for the latest release.
# for *workspace* manifest files where there is no companion lockfile (e.g., libraries).
- phylum-ci --force-analysis --all-deps --depfile Cargo.toml

# Perform analysis as part of a group-owned project.
# A paid account is needed to use groups: https://phylum.io/pricing
- phylum-ci --group my_group

# Analyze all dependencies in audit mode, to gain insight without failing builds.
- phylum-ci --all-deps --audit

Expand Down
4 changes: 4 additions & 0 deletions docs/integrations/git_precommit.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ with `--help` output as specified in the [Usage section of the top-level README.
# for *workspace* manifest files where there is no companion lockfile (e.g., libraries).
args: [--force-analysis, --all-deps, --depfile=Cargo.toml]

# Perform analysis as part of a group-owned project.
# A paid account is needed to use groups: https://phylum.io/pricing
args: [--group, my_group]

# Ensure the latest Phylum CLI is installed.
args: [--force-install]

Expand Down
4 changes: 4 additions & 0 deletions docs/integrations/gitlab_ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,10 @@ view the [script options output][script_options] for the latest release.
# for *workspace* manifest files where there is no companion lockfile (e.g., libraries).
- phylum-ci --force-analysis --all-deps --depfile Cargo.toml

# Perform analysis as part of a group-owned project.
# A paid account is needed to use groups: https://phylum.io/pricing
- phylum-ci --group my_group

# Analyze all dependencies in audit mode, to gain insight without failing builds.
- phylum-ci --all-deps --audit

Expand Down
Loading