Closed Issue Message #349
Workflow file for this run
This file contains 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: Closed Issue Message | |
on: | |
workflow_dispatch: | |
inputs: | |
commit_sha: | |
description: 'Commit SHA to checkout' | |
required: true | |
repository_owner: | |
description: 'Owner of the source repository' | |
required: true | |
repository_name: | |
description: 'Name of the source repository' | |
required: true | |
jobs: | |
process_pull_request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.event.inputs.repository_owner }}/${{ github.event.inputs.repository_name }} | |
ref: ${{ github.event.inputs.commit_sha }} | |
path: ${{ github.event.inputs.repository_name }} | |
- name: Check repo | |
working-directory: ${{ github.event.inputs.repository_name }} | |
run: | | |
ls |