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

Pipelines v3 #83

Merged
merged 26 commits into from
Oct 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b76bee6
DEV-378 - Breakout creating PRs from boilerplating for new accounts/r…
ZachGoldberg Aug 29, 2024
76319dc
DEV-408 Use Get Logs URL in jobs (#68)
Resonance1584 Aug 29, 2024
8caeb6e
Drift Detection Workflow (#79)
Resonance1584 Aug 29, 2024
86b08db
Support Pipelines as a Gruntwork GitHub App (#82)
Resonance1584 Sep 17, 2024
5499fd1
Use github app token when creating comments
Resonance1584 Sep 20, 2024
27fcfb7
Fix checkout repo not using github app token
Resonance1584 Sep 20, 2024
450e01f
Fix token not passed to preflight
Resonance1584 Sep 20, 2024
09f6e30
Fix tokens not used
Resonance1584 Sep 20, 2024
fb8d0f6
Fix tokens not used
Resonance1584 Sep 20, 2024
d2d00ef
Fix tokens not used
Resonance1584 Sep 20, 2024
828ab0d
Fix tokens not used
Resonance1584 Sep 20, 2024
5fb87ca
Fix tokens not used
Resonance1584 Sep 20, 2024
6e554d6
pipelines-credentials@v1
Resonance1584 Sep 27, 2024
ab8a6f6
Merge branch 'main' into v3-rc1
yhakbar Sep 30, 2024
ef6bf9d
Pipelines v0.29.0-rc15
Resonance1584 Oct 1, 2024
4a47179
Add path filter
Resonance1584 Oct 1, 2024
852fad6
Add path to PR title
Resonance1584 Oct 2, 2024
95f055d
Dont use PATH as an env var
Resonance1584 Oct 2, 2024
854afe6
Pipelines v0.29.0-rc16
Resonance1584 Oct 3, 2024
41c0d02
Pipelines v0.29.0-rc17
Resonance1584 Oct 4, 2024
02f971e
Set max-parallel to 18
Resonance1584 Oct 7, 2024
6f33bcf
Fix matrix should not try to run if no units are detected
Resonance1584 Oct 7, 2024
234c1df
Adjust skip logic for empty units
Resonance1584 Oct 7, 2024
e3e9b4a
Try fromJSON before null check
Resonance1584 Oct 7, 2024
3162570
Adjust versions
Resonance1584 Oct 8, 2024
5a3b72e
Fix runner documentation above wrong input
Resonance1584 Oct 8, 2024
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
Prev Previous commit
Next Next commit
Fix token not passed to preflight
Resonance1584 committed Sep 20, 2024
commit 450e01f2e3fb1969e61579d3146e9b5a381de7ac
1 change: 1 addition & 0 deletions .github/workflows/pipelines-root.yml
Original file line number Diff line number Diff line change
@@ -125,6 +125,7 @@ jobs:
ORG_REPO_ADMIN_TOKEN: ${{ steps.pipelines-org-repo-admin-token.outputs.PIPELINES_TOKEN }}
PIPELINES_GRUNTWORK_READ_TOKEN: ${{ steps.pipelines-gruntwork-read-token.outputs.PIPELINES_TOKEN }}
PIPELINES_CUSTOMER_ORG_READ_TOKEN: ${{ steps.pipelines-customer-org-read-token.outputs.PIPELINES_TOKEN }}
PR_COMMENT_WRITE_TOKEN: ${{ steps.pipelines-infra-root-write-token.outputs.PIPELINES_TOKEN }}

- name: Pipelines Orchestrate
id: orchestrate
9 changes: 9 additions & 0 deletions .github/workflows/pipelines.yml
Original file line number Diff line number Diff line change
@@ -60,6 +60,14 @@ jobs:
FALLBACK_TOKEN: ${{ secrets.PIPELINES_READ_TOKEN }}
api_base_url: ${{ inputs.api_base_url }}

- name: Fetch Create PR Token
id: pipelines-propose-infra-change-token
uses: gruntwork-io/pipelines-credentials@main
with:
PIPELINES_TOKEN_PATH: propose-infra-change/${{ github.repository_owner }}
FALLBACK_TOKEN: ${{ secrets.PR_CREATE_TOKEN }}
api_base_url: ${{ inputs.api_base_url }}

- name: Checkout Pipelines Actions
id: checkout_actions
uses: actions/checkout@v4
@@ -97,6 +105,7 @@ jobs:
PIPELINES_READ_TOKEN: ${{ secrets.PIPELINES_READ_TOKEN }}
PIPELINES_GRUNTWORK_READ_TOKEN: ${{ steps.pipelines-gruntwork-read-token.outputs.PIPELINES_TOKEN }}
PIPELINES_CUSTOMER_ORG_READ_TOKEN: ${{ steps.pipelines-customer-org-read-token.outputs.PIPELINES_TOKEN }}
PR_CREATE_TOKEN: ${{ steps.pipelines-propose-infra-change-token.outputs.PIPELINES_TOKEN }}

- name: Pipelines Orchestrate
id: orchestrate