From 65c36faeaaa521acc8226658dc4e1b57137e4be8 Mon Sep 17 00:00:00 2001 From: Rohan Sadanandan Date: Wed, 15 Jan 2025 22:26:54 +0530 Subject: [PATCH 1/6] testing github action --- .../.github/workflows/generate-csv.yml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 packages/yoastseo/.github/workflows/generate-csv.yml diff --git a/packages/yoastseo/.github/workflows/generate-csv.yml b/packages/yoastseo/.github/workflows/generate-csv.yml new file mode 100644 index 00000000000..29de29de5d3 --- /dev/null +++ b/packages/yoastseo/.github/workflows/generate-csv.yml @@ -0,0 +1,23 @@ +name: Manual Run Commands + +# Allow the workflow to be triggered manually +on: + workflow_dispatch: + inputs: + command: + description: "Command to run" + required: false + default: "echo Hello, World!" + +jobs: + run-commands: + runs-on: ubuntu-latest + + steps: + # Check out the repository code + - name: Check out repository + uses: actions/checkout@v3 + + # Run the specified command or default to echoing a message + - name: Run specified command + run: ${{ github.event.inputs.command }} From fe38a914b8d3651b4512db4324e2581b4c69a864 Mon Sep 17 00:00:00 2001 From: Rohan Sadanandan Date: Wed, 15 Jan 2025 22:45:20 +0530 Subject: [PATCH 2/6] removing incorrect directory and file --- .../.github/workflows/generate-csv.yml | 23 ------------------- .../exportInclusiveLanguageConfigSpec.js | 2 +- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 packages/yoastseo/.github/workflows/generate-csv.yml diff --git a/packages/yoastseo/.github/workflows/generate-csv.yml b/packages/yoastseo/.github/workflows/generate-csv.yml deleted file mode 100644 index 29de29de5d3..00000000000 --- a/packages/yoastseo/.github/workflows/generate-csv.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Manual Run Commands - -# Allow the workflow to be triggered manually -on: - workflow_dispatch: - inputs: - command: - description: "Command to run" - required: false - default: "echo Hello, World!" - -jobs: - run-commands: - runs-on: ubuntu-latest - - steps: - # Check out the repository code - - name: Check out repository - uses: actions/checkout@v3 - - # Run the specified command or default to echoing a message - - name: Run specified command - run: ${{ github.event.inputs.command }} diff --git a/packages/yoastseo/spec/scoring/assessments/inclusiveLanguage/exportInclusiveLanguageConfigSpec.js b/packages/yoastseo/spec/scoring/assessments/inclusiveLanguage/exportInclusiveLanguageConfigSpec.js index cd571419246..6cc7756ed21 100644 --- a/packages/yoastseo/spec/scoring/assessments/inclusiveLanguage/exportInclusiveLanguageConfigSpec.js +++ b/packages/yoastseo/spec/scoring/assessments/inclusiveLanguage/exportInclusiveLanguageConfigSpec.js @@ -79,7 +79,7 @@ describe( "Export of the inclusive language configuration", () => { resultLines.unshift( header.join( ";" ) ); // Set doExport to true to write the results to a temporary file. - const doExport = false; + const doExport = true; if ( doExport ) { writeToTempFile( "inclusive-language-database.csv", resultLines.join( "\n" ) ); } From 90e4ef503bee6dac3a4e6b1db45ea105541cc862 Mon Sep 17 00:00:00 2001 From: Rohan Sadanandan Date: Wed, 15 Jan 2025 22:48:06 +0530 Subject: [PATCH 3/6] testing github action --- .github/workflows/generate-csv.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/generate-csv.yml diff --git a/.github/workflows/generate-csv.yml b/.github/workflows/generate-csv.yml new file mode 100644 index 00000000000..29de29de5d3 --- /dev/null +++ b/.github/workflows/generate-csv.yml @@ -0,0 +1,23 @@ +name: Manual Run Commands + +# Allow the workflow to be triggered manually +on: + workflow_dispatch: + inputs: + command: + description: "Command to run" + required: false + default: "echo Hello, World!" + +jobs: + run-commands: + runs-on: ubuntu-latest + + steps: + # Check out the repository code + - name: Check out repository + uses: actions/checkout@v3 + + # Run the specified command or default to echoing a message + - name: Run specified command + run: ${{ github.event.inputs.command }} From 058246853ce70028773133d4f3f414774a9c12ce Mon Sep 17 00:00:00 2001 From: Rohan Sadanandan Date: Wed, 15 Jan 2025 23:05:29 +0530 Subject: [PATCH 4/6] testing github action --- .github/workflows/manual-run.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/manual-run.yml diff --git a/.github/workflows/manual-run.yml b/.github/workflows/manual-run.yml new file mode 100644 index 00000000000..af57ca368fe --- /dev/null +++ b/.github/workflows/manual-run.yml @@ -0,0 +1,20 @@ +name: Manual Run Commands + +# Allow the workflow to be triggered manually +on: + workflow_dispatch: # Enables manual triggering in the GitHub Actions interface + +jobs: + run-commands: + runs-on: ubuntu-latest + + steps: + # Check out the repository code + - name: Check out repository + uses: actions/checkout@v3 + + # Run the 'ls' command to list files in the repository + - name: List files in the repository + run: | + echo "Listing files in the repository root:" + ls -la From a492443210e7294d40fb255bcf3f086857999b32 Mon Sep 17 00:00:00 2001 From: Rohan Sadanandan Date: Wed, 15 Jan 2025 23:17:57 +0530 Subject: [PATCH 5/6] testing github action --- .github/workflows/manual-run.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual-run.yml b/.github/workflows/manual-run.yml index af57ca368fe..8c500f4bc8b 100644 --- a/.github/workflows/manual-run.yml +++ b/.github/workflows/manual-run.yml @@ -11,7 +11,7 @@ jobs: steps: # Check out the repository code - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Run the 'ls' command to list files in the repository - name: List files in the repository From 6ac146ed5492f1f8fe40a476b5e92ef1af71193b Mon Sep 17 00:00:00 2001 From: Rohan Sadanandan Date: Wed, 15 Jan 2025 23:22:28 +0530 Subject: [PATCH 6/6] deleting generate csv --- .github/workflows/generate-csv.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/generate-csv.yml diff --git a/.github/workflows/generate-csv.yml b/.github/workflows/generate-csv.yml deleted file mode 100644 index 29de29de5d3..00000000000 --- a/.github/workflows/generate-csv.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Manual Run Commands - -# Allow the workflow to be triggered manually -on: - workflow_dispatch: - inputs: - command: - description: "Command to run" - required: false - default: "echo Hello, World!" - -jobs: - run-commands: - runs-on: ubuntu-latest - - steps: - # Check out the repository code - - name: Check out repository - uses: actions/checkout@v3 - - # Run the specified command or default to echoing a message - - name: Run specified command - run: ${{ github.event.inputs.command }}