Skip to content

Update GitHub Pages

Update GitHub Pages #2

Workflow file for this run

name: Update GitHub Pages
on:
workflow_dispatch:
jobs:
trigger_another_workflow:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
github-token: ${{ secrets.RELEASE_AUTOMATION_BOT_PAT }}
script: |
github.rest.actions.createWorkflowDispatch({
owner: 'awslabs',
repo: 'aws-sdk-rust',
workflow_id: 'closed-issue-message.yaml',
ref: 'ysaito/dummy-workflow',
inputs: {
commit_sha: context.sha,
repository_name: `${{ github.repository }}`
}
})