Skip to content

Commit

Permalink
Merge pull request #21969 from rohans456/export-inclusive-language
Browse files Browse the repository at this point in the history
Export inclusive language
  • Loading branch information
rohans456 authored Jan 15, 2025
2 parents 9c66956 + 6ac146e commit bf0d1b1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/manual-run.yml
Original file line number Diff line number Diff line change
@@ -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@v4

# 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
Original file line number Diff line number Diff line change
Expand Up @@ -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" ) );
}
Expand Down

0 comments on commit bf0d1b1

Please sign in to comment.