From aaffb72f5d69940b8ee542d0c1b33c7dc220a433 Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Tue, 23 Sep 2025 22:09:51 +0300 Subject: [PATCH 1/3] Fix readme linting technical files Add command to get status of changed files in action. --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 4473fb6..7dd0a9e 100644 --- a/action.yml +++ b/action.yml @@ -235,6 +235,7 @@ runs: set +e atmos ${{ inputs.command }} # Get all changed files and process them + git status --porcelain changed_files=$(git status --porcelain | grep -E "^\s?(M|\?\?)" | cut -c4-) set -e for file in $changed_files; do From d51e00b76a8642390d5bb6d91366a18b29745bf8 Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Tue, 23 Sep 2025 22:19:34 +0300 Subject: [PATCH 2/3] Update action.yml --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 7dd0a9e..39b4731 100644 --- a/action.yml +++ b/action.yml @@ -233,6 +233,7 @@ runs: GITHUB_TOKEN: "${{ inputs.token }}" run: | set +e + git status --porcelain atmos ${{ inputs.command }} # Get all changed files and process them git status --porcelain From 00f5dad789fb63e20c14edaed93d7638c07b2544 Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Tue, 23 Sep 2025 22:39:40 +0300 Subject: [PATCH 3/3] Remove duplicate git status command Removed redundant git status command from the script. --- action.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 39b4731..6a38c80 100644 --- a/action.yml +++ b/action.yml @@ -233,10 +233,14 @@ runs: GITHUB_TOKEN: "${{ inputs.token }}" run: | set +e - git status --porcelain atmos ${{ inputs.command }} + # Generated by atmos + rm -rf .atmos + # Checkout of org level configs + rm -rf github + # Generated by screengrab + rm -f docker.env # Get all changed files and process them - git status --porcelain changed_files=$(git status --porcelain | grep -E "^\s?(M|\?\?)" | cut -c4-) set -e for file in $changed_files; do