s3: Custom s3 auto delete lambda is still using node 20.x #2656
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: Lock Closed Issues and PRs with message | |
on: | |
pull_request_target: | |
types: [closed] | |
issues: | |
types: [closed] | |
jobs: | |
auto_comment: | |
permissions: | |
pull-requests: write | |
issues: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: aws-actions/closed-issue-message@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
message: | | |
Comments on closed issues and PRs are hard for our team to see. | |
If you need help, please open a new issue that references this one. | |
lock: | |
permissions: | |
pull-requests: write | |
issues: write | |
runs-on: ubuntu-latest | |
needs: auto_comment # only run after comment is complete | |
steps: | |
- name: Lock closed issue or PR | |
run: | | |
if [ "${{ github.event_name }}" == "issues" ]; then | |
ISSUE_NUMBER=${{ github.event.issue.number }} | |
ISSUE_URL=https://api.github.com/repos/${{ github.repository }}/issues/${ISSUE_NUMBER}/lock | |
else | |
ISSUE_NUMBER=${{ github.event.pull_request.number }} | |
ISSUE_URL=https://api.github.com/repos/${{ github.repository }}/issues/${ISSUE_NUMBER}/lock | |
fi | |
curl -s -X PUT -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
-H "Accept: application/vnd.github.v3+json" \ | |
${ISSUE_URL} \ | |
-d @- <<EOF | |
{ | |
"lock_reason": "resolved" | |
} | |
EOF |