From a6e865d9784b78e7c1f6bf38e525aed630d260fb Mon Sep 17 00:00:00 2001 From: Raymond Thomas Date: Wed, 6 May 2026 13:44:12 -0400 Subject: [PATCH 1/9] Add PR labeler workflow configuration --- .github/workflows/.github/workflows/labeler.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/.github/workflows/labeler.yml diff --git a/.github/workflows/.github/workflows/labeler.yml b/.github/workflows/.github/workflows/labeler.yml new file mode 100644 index 0000000..d289e4a --- /dev/null +++ b/.github/workflows/.github/workflows/labeler.yml @@ -0,0 +1,16 @@ +name: PR Labeler + +on: + pull_request: + +jobs: + label: + runs-on: ubuntu-latest + + permissions: + contents: read + pull-requests: write + + steps: + - name: Label PR + uses: actions/labeler@v5 From b67dc09571bd0bb86ac935c14b959a057e9e00ce Mon Sep 17 00:00:00 2001 From: Raymond Thomas Date: Wed, 6 May 2026 13:45:01 -0400 Subject: [PATCH 2/9] Add labeler workflow for Python files --- .../workflows/.github/workflows/.github/.github/labeler.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/workflows/.github/workflows/.github/.github/labeler.yml diff --git a/.github/workflows/.github/workflows/.github/.github/labeler.yml b/.github/workflows/.github/workflows/.github/.github/labeler.yml new file mode 100644 index 0000000..98a8898 --- /dev/null +++ b/.github/workflows/.github/workflows/.github/.github/labeler.yml @@ -0,0 +1,3 @@ +python: + - changed-files: + - any-glob-to-any-file: "*.py" From 982a71431ee5447333e4f7e06d12090f1818c9e7 Mon Sep 17 00:00:00 2001 From: Raymond Thomas Date: Wed, 6 May 2026 13:49:38 -0400 Subject: [PATCH 3/9] Delete .github/workflows/.github/workflows/labeler.yml --- .github/workflows/.github/workflows/labeler.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/.github/workflows/labeler.yml diff --git a/.github/workflows/.github/workflows/labeler.yml b/.github/workflows/.github/workflows/labeler.yml deleted file mode 100644 index d289e4a..0000000 --- a/.github/workflows/.github/workflows/labeler.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: PR Labeler - -on: - pull_request: - -jobs: - label: - runs-on: ubuntu-latest - - permissions: - contents: read - pull-requests: write - - steps: - - name: Label PR - uses: actions/labeler@v5 From fba9b87a36249b840eab5981d519f92252f630c6 Mon Sep 17 00:00:00 2001 From: Raymond Thomas Date: Wed, 6 May 2026 13:51:21 -0400 Subject: [PATCH 4/9] Add GitHub Actions workflow for PR labeling --- .github/workflows/labeler.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/labeler.yml diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000..a323f4d --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,16 @@ +name: PR Labeler + +on: + pull_request: + +jobs: + label: + runs-on: ubuntu-latest + + permissions: + contents: read + pull-requests: write + + steps: + - name: Label Pull Request + uses: actions/labeler@v5 From 266db58239de8292b56d6614a5e4a00c5d867159 Mon Sep 17 00:00:00 2001 From: Raymond Thomas Date: Wed, 6 May 2026 13:52:04 -0400 Subject: [PATCH 5/9] Add labeler configuration for Python files --- .github/labeler.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..98a8898 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,3 @@ +python: + - changed-files: + - any-glob-to-any-file: "*.py" From f089de755fbe761a1a682b690e8754d91225630f Mon Sep 17 00:00:00 2001 From: Raymond Thomas Date: Wed, 6 May 2026 13:54:44 -0400 Subject: [PATCH 6/9] Add test labeler comment in app.py --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index 5e6bf0d..adbc25d 100644 --- a/app.py +++ b/app.py @@ -1,2 +1,4 @@ def hello(): return "Hello World" + +#test labeler From a218f686fdc7096a03bf0e48d959adb695bf8f84 Mon Sep 17 00:00:00 2001 From: Raymond Thomas Date: Wed, 6 May 2026 14:01:42 -0400 Subject: [PATCH 7/9] Remove hello function and print directly --- app.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index adbc25d..533c226 100644 --- a/app.py +++ b/app.py @@ -1,4 +1,3 @@ -def hello(): - return "Hello World" +print("Hello World") -#test labeler +# test labeler From fd96d839164326172eee65c0584b2ca5f0ce55d6 Mon Sep 17 00:00:00 2001 From: Raymond Thomas Date: Wed, 6 May 2026 14:09:29 -0400 Subject: [PATCH 8/9] Refactor Hello World to a function --- app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 533c226..3389e69 100644 --- a/app.py +++ b/app.py @@ -1,3 +1,7 @@ -print("Hello World") +def hello(): + return "Hello World" + + +print(hello()) # test labeler From f7353ae13086a5dfc54201ea3fb4e9db812120d9 Mon Sep 17 00:00:00 2001 From: Raymond Thomas Date: Wed, 6 May 2026 14:12:41 -0400 Subject: [PATCH 9/9] Update test labeler comment --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 3389e69..80f1358 100644 --- a/app.py +++ b/app.py @@ -4,4 +4,4 @@ def hello(): print(hello()) -# test labeler +# test labeler 2