From ef935a1c4bdcaaffe74bfd5e6e2143524f204936 Mon Sep 17 00:00:00 2001 From: sakisv Date: Wed, 27 May 2026 21:34:23 +0300 Subject: [PATCH 1/2] Update README.md to include new services/resources --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6e3297a..a432015 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,8 @@ exist in your statefiles, and prints the missing ones in a json format for ease | elbv2 | elbv2_load_balancer | | autoscaling | autoscaling_group | | lambda | lambda_function | +| dynamodb | dynamodb_table | +| cloudwatchlogs | cloudwatchlogs_log_group | ## How to use From 0e944d1be2fad14348139b8ca20f058bc3f2f8c1 Mon Sep 17 00:00:00 2001 From: sakisv Date: Wed, 27 May 2026 21:42:00 +0300 Subject: [PATCH 2/2] Replace 3rd party action with gh cli command --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb87e0d..ef27474 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,7 +82,7 @@ jobs: with: merge-multiple: true - name: create release - uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0 - with: - files: noclickops-* - generate_release_notes: true + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + gh release create "$GITHUB_REF_NAME" --generate-notes noclickops-*