Skip to content

On PR merge

On PR merge #270

Workflow file for this run

name: On PR merge
on:
workflow_run:
workflows: ["Record PR details"]
types:
- completed
jobs:
get_pr_details:

Check failure on line 10 in .github/workflows/on_merged_pr.yml

View workflow run for this annotation

GitHub Actions / On PR merge

Invalid workflow file

The workflow is not valid. .github/workflows/on_merged_pr.yml (Line: 10, Col: 3): Error calling workflow 'aws-samples/aws-serverless-developer-experience-workshop-python/.github/workflows/reusable_export_pr_details.yml@c3fcd3137166400606423b677b534a9402d0b8a7'. The nested job 'export_pr_details' is requesting 'actions: read', but is only allowed 'actions: none'.
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
uses: ./.github/workflows/reusable_export_pr_details.yml
with:
record_pr_workflow_id: ${{ github.event.workflow_run.id }}
workflow_origin: ${{ github.event.repository.full_name }}
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
release_label_on_merge:
needs: get_pr_details
runs-on: ubuntu-latest
if: needs.get_pr_details.outputs.prIsMerged == 'true'
steps:
- uses: actions/checkout@v6
- name: "Label PR related issue for release"
uses: actions/github-script@v7
env:
PR_NUMBER: ${{ needs.get_pr_details.outputs.prNumber }}
PR_BODY: ${{ needs.get_pr_details.outputs.prBody }}
PR_IS_MERGED: ${{ needs.get_pr_details.outputs.prIsMerged }}
PR_AUTHOR: ${{ needs.get_pr_details.outputs.prAuthor }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const script = require('.github/scripts/label_related_issue.js')
await script({github, context, core})