-
Notifications
You must be signed in to change notification settings - Fork 905
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21969 from rohans456/export-inclusive-language
Export inclusive language
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters