fix(codepipeline): prevent S3 bucket orphaning in cross-region support stacks #13566
Workflow file for this run
This file contains hidden or 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
name: PR Prioritization | |
on: | |
pull_request_target: | |
types: | |
- labeled | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
prioritize: | |
if: github.repository == 'aws/aws-cdk' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Add PR to Project & Set Priority | |
uses: actions/github-script@v8 | |
with: | |
github-token: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
script: | | |
const script = require('./scripts/prioritization/assign-priority.js') | |
await script({github, context}) |