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

Product labels pr #16147

Merged
merged 5 commits into from
Aug 14, 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
70 changes: 62 additions & 8 deletions .github/actions/label-products/index.js

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions .github/actions/label-products/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ import * as core from '@actions/core';

function getTopLevelFolder(path: string): string {
const parts = path.split('/');
return parts[0];
return parts[2];
}


function getSubFolder(path: string): string {
const parts = path.split('/');
return parts[1];
return parts[3];
}

function getChangedSubFolders(files: any[]): string[] {
Expand All @@ -22,7 +23,7 @@ function getChangedSubFolders(files: any[]): string[] {
const topLevelFolder = getTopLevelFolder(path);

// Check if the file is within the top-level /content folder
if (topLevelFolder === 'content') {
if (topLevelFolder === 'docs') {
const subFolder = getSubFolder(path);
changedFolders.add(subFolder);
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Label PRs
# **Why we have it**: Easier scanning of repo PRs && backend reporting on our team's work.
# **Who does it impact**: PCX team

on: [pull_request_target]
on: [pull_request]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
12 changes: 6 additions & 6 deletions src/content/docs/aegis/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { CardGrid, Description, GlossaryTooltip, LinkTitleCard, Plan, RelatedPro

<Description>

Leverage dedicated IPs to improve your origin security and implement Zero Trust.
Leverage dedicated IPs to improve your origin security and implement Zero Trust.
</Description>

<Plan type="enterprise" />
Expand All @@ -22,15 +22,15 @@ Cloudflare Aegis provides dedicated egress IPs (from Cloudflare to your origin)
## Related products

<RelatedProduct header="Cloudflare Access" href="/cloudflare-one/policies/access/" product="cloudflare-one">
Cloudflare Access determines who can reach your application by applying the Access policies you configure.
Cloudflare Access determines who can reach your application by applying the Access policies you configure.
</RelatedProduct>

<RelatedProduct header="Cloudflare Tunnel" href="/cloudflare-one/connections/connect-networks/" product="cloudflare-one">
Cloudflare Tunnel provides you with a secure way to connect your resources to Cloudflare without a publicly routable IP address.
Cloudflare Tunnel provides you with a secure way to connect your resources to Cloudflare without a publicly routable IP address.
</RelatedProduct>

<RelatedProduct header="Authenticated Origin Pulls" href="/ssl/origin-configuration/authenticated-origin-pull/" product="ssl">
Authenticated Origin Pulls gives you the ability to perform mutual TLS between Cloudflare and your origin environment, providing cryptographically verifiable proof of the source of the traffic you receive.
Authenticated Origin Pulls gives you the ability to perform mutual TLS between Cloudflare and your origin environment, providing cryptographically verifiable proof of the source of the traffic you receive.
</RelatedProduct>

***
Expand All @@ -41,12 +41,12 @@ Authenticated Origin Pulls gives you the ability to perform mutual TLS between C

<LinkTitleCard title="Introductory blog post" href="https://blog.cloudflare.com/cloudflare-aegis/" icon="open-book">

Deep dive into use cases where Aegis can help secure enterprise origins.
Deep dive into use cases where Aegis can help secure enterprise origins.
</LinkTitleCard>

<LinkTitleCard title="Multi-Vendor Architecture" href="/reference-architecture/architectures/multi-vendor/#connectivity-options" icon="document">

Reference Architecture for multi-vendor application security and performance.
Reference Architecture for multi-vendor application security and performance.
</LinkTitleCard>

</CardGrid>
Loading