Skip to content
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
5 changes: 3 additions & 2 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ jobs:
run: twine upload --repository codeartifact dist/*

# ── 5. Trigger DEV deployment in Lambda-Recipes ───────────────────────────
# CROSS_REPO_PAT: a GitHub PAT with Actions read/write on Lambda-Recipes,
# CROSS_REPO_PAT_V2: a GitHub PAT with Actions read/write on Lambda-Recipes
# (and Contents read/write on wrangleworks.github.io for schema publish),
# stored as a repository or org secret. Required to dispatch workflows across repositories.
trigger-deploy-dev:
name: Trigger DEV Deploy
Expand Down Expand Up @@ -271,7 +272,7 @@ jobs:
owner: wrangleworks
repo: Lambda-Recipes
workflow_file_name: deploy-dev.yml
github_token: ${{ secrets.CROSS_REPO_PAT }}
github_token: ${{ secrets.CROSS_REPO_PAT_V2 }}
ref: main
wait_interval: 15
client_payload: ${{ steps.dispatch.outputs.payload }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish-tagged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,8 @@ jobs:
# ── Trigger PROD deployment in Lambda-Recipes ─────────────────────────────
# Runs after publish-pypi (or when skipped) because Lambda-Recipes verify-setup
# requires the version to exist on PyPI before the deploy pipeline starts.
# CROSS_REPO_PAT: GitHub PAT with Actions read/write on Lambda-Recipes.
# CROSS_REPO_PAT_V2: GitHub PAT with Actions read/write on Lambda-Recipes
# (and Contents read/write on wrangleworks.github.io for Deploy Dev schema publish).
trigger-deploy-prod:
name: Trigger PROD Deploy
runs-on: ubuntu-latest
Expand Down Expand Up @@ -435,7 +436,7 @@ jobs:
owner: wrangleworks
repo: Lambda-Recipes
workflow_file_name: deploy-prod.yml
github_token: ${{ secrets.CROSS_REPO_PAT }}
github_token: ${{ secrets.CROSS_REPO_PAT_V2 }}
ref: main
wait_interval: 15
client_payload: ${{ steps.dispatch.outputs.payload }}
Expand Down