fix(lambda): correct Lambda Insights ARNs for ARM64 1.0.498.0 #20400
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@v6 | |
| - 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}) |