From 88ccac4195c4e56e7ba9316b0c9aee7ff0b16b64 Mon Sep 17 00:00:00 2001 From: thejmitchener Date: Tue, 17 Dec 2024 17:38:34 -0500 Subject: [PATCH 1/2] Change the .gitignore.stub file to include the /build directory and exclude the build directory, in order to properly ignore the build artifacts and improve the organization of the repository. --- stubs/.gitignore.stub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/.gitignore.stub b/stubs/.gitignore.stub index 7af8c40..bb9fd5c 100644 --- a/stubs/.gitignore.stub +++ b/stubs/.gitignore.stub @@ -1,6 +1,6 @@ .idea .phpunit.cache -build +/build coverage docs phpunit.xml From d163963a910864a69b1ca3c94dd939639494002d Mon Sep 17 00:00:00 2001 From: thejmitchener Date: Tue, 17 Dec 2024 17:40:23 -0500 Subject: [PATCH 2/2] Fix if statement syntax in open-ai-pr-description.yml. The changes were made to ensure that the job runs only if the actor is not Dependabot. --- .github/workflows/open-ai-pr-description.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/open-ai-pr-description.yml b/.github/workflows/open-ai-pr-description.yml index f801b1d..eefe69b 100644 --- a/.github/workflows/open-ai-pr-description.yml +++ b/.github/workflows/open-ai-pr-description.yml @@ -15,7 +15,7 @@ jobs: openai-pr-description: runs-on: ubuntu-22.04 # Run the job only if the actor is NOT Dependabot - if: ${{ !startsWith(github.actor, 'dependabot') } + if: ${{ !startsWith(github.actor, 'dependabot') }} steps: - uses: platisd/openai-pr-description@master with: