Enhanced AWS Lambda serverless functionality #370
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: PR Closed | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
issue_closer: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Clone the repo | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag v4.1.7 | |
- name: issue_closer Action | |
uses: ./.github/actions/issue_closer | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} # permission needed to read PR comments and close issues |