-
Notifications
You must be signed in to change notification settings - Fork 960
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Dry run prepare-website on merge to main (#5721)
- Loading branch information
1 parent
c38f83c
commit 197ca8e
Showing
4 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: DryRunGenPR | ||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
jobs: | ||
dryrun-gen: | ||
if: github.repository == 'aws/karpenter-provider-aws' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- run: make prepare-website | ||
env: | ||
GIT_TAG: v0.10000.0 # Mock version for testing website generation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
name: DocGenCI | ||
name: DryRunGen | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
- 'release-v*' | ||
jobs: | ||
docgen-ci: | ||
dryrun-gen: | ||
permissions: | ||
id-token: write # aws-actions/[email protected] | ||
if: github.repository == 'aws/karpenter-provider-aws' | ||
|
@@ -21,3 +21,6 @@ jobs: | |
- run: make codegen | ||
env: | ||
ENABLE_GIT_PUSH: false | ||
- run: make prepare-website | ||
env: | ||
GIT_TAG: v0.10000.0 # Mock version for testing website generation |
4 changes: 2 additions & 2 deletions
4
.github/workflows/pr-snapshot.yaml → .github/workflows/snapshot-pr.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
- 'main' | ||
- 'release-v*' | ||
jobs: | ||
release: | ||
snapshot: | ||
permissions: | ||
id-token: write # aws-actions/[email protected] | ||
if: github.repository == 'aws/karpenter-provider-aws' | ||
|