Skip to content

Release Testing

Release Testing #3

Workflow file for this run

# refs:
# - https://shipit.dev/posts/trigger-github-actions-on-pr-close.html
# - https://github.com/orgs/community/discussions/26724
# - https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#running-your-pull_request-workflow-when-a-pull-request-merges
# - https://github.com/orgs/community/discussions/27058
name: Release Testing
permissions: read-all
on:
workflow_dispatch:
# pull_request:
# branches: [next]
# types: [closed]
jobs:
rc:

Check failure on line 18 in .github/workflows/semrel-02-rel.yml

View workflow run for this annotation

GitHub Actions / Release Testing

Invalid workflow file

The workflow is not valid. .github/workflows/semrel-02-rel.yml (Line: 18, Col: 3): Error calling workflow 'btlghrants/pepr-semrel/.github/workflows/semrel-rc.yml@eb77a188e65f23a52b47206cece20f64e23edbab'. The nested job 'check' is requesting 'contents: write', but is only allowed 'contents: read'. .github/workflows/semrel-02-rel.yml (Line: 18, Col: 3): Error calling workflow 'btlghrants/pepr-semrel/.github/workflows/semrel-rc.yml@eb77a188e65f23a52b47206cece20f64e23edbab'. The nested job 'show' is requesting 'contents: write', but is only allowed 'contents: read'.
if: ${{ github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true }}
uses: ./.github/workflows/semrel-rc.yml
soak:
needs: [rc]
uses: ./.github/workflows/semrel-soak.yml
official:
needs: [soak]
uses: ./.github/workflows/semrel-official.yml