-
Notifications
You must be signed in to change notification settings - Fork 17.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
18,264 additions
and
1,955 deletions.
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 |
---|---|---|
|
@@ -5,21 +5,34 @@ jobs: | |
name: Run sort-users.py | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Pull Repo | ||
uses: actions/checkout@v2 | ||
- name: Checkout PR | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: Install Python 3 | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
- name: Run script | ||
- name: Sort users | ||
run: python sort-users.py | ||
- name: Push Back Formatted Code | ||
- name: Change CONTRIBUTORS file | ||
run: | | ||
# configure git | ||
git config --global user.name "Zero to Mastery" | ||
git config --global user.email "[email protected]" | ||
echo "Changed" > CONTRIBUTORS.md | ||
- name: Check for changes | ||
uses: tj-actions/[email protected] | ||
id: changed_files | ||
with: | ||
files: | | ||
CONTRIBUTORS.md | ||
- name: Display changes to CONTRIBUTORS file | ||
if: steps.changed_files.outputs.files_changed == 'true' | ||
run: | | ||
echo "Changed files: ${{ steps.changed_files.outputs.changed_files }}" | ||
- name: Commit changes | ||
if: steps.changed_files.outputs.files_changed == 'true' | ||
run: | | ||
git config --global user.name github-actions | ||
git config --global user.email [email protected] | ||
git commit -a -m "(CI) format code" | ||
git push |
Oops, something went wrong.