Skip to content

[Bug]: Terraform - aws_dynamodb_table resource deletion_protection_enabled option not working #10492

[Bug]: Terraform - aws_dynamodb_table resource deletion_protection_enabled option not working

[Bug]: Terraform - aws_dynamodb_table resource deletion_protection_enabled option not working #10492

Workflow file for this run

name: Process issue_comment Events
on:
issue_comment:
types: [created]
permissions:
contents: read
issues: write
pull-requests: write
jobs:
labeler:
name: Labeler
runs-on: ubuntu-latest
if: contains(github.event.issue.labels.*.name, 'stale') || contains(github.event.issue.labels.*.name, 'waiting-response')
steps:
- name: Checkout Community Check
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
with:
sparse-checkout: .github/actions/community_check
- name: Run Community Check
id: community_check
uses: ./.github/actions/community_check
with:
user_login: ${{ github.event.comment.user.login }}
maintainers: ${{ secrets.MAINTAINERS }}
- name: Remove stale and waiting-response
if: steps.community_check.outputs.maintainer == 'false'
env:
COMMAND: ${{ github.event.issue.pull_request && 'pr' || 'issue' }}
GH_TOKEN: ${{ github.token }}
run: gh $COMMAND edit ${{ github.event.issue.html_url }} --remove-label stale,waiting-response