mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
565060aa99
* actions/setup-python@v2 * fixup! Format Python code with psf/black push * Update autoblack.yml * updating DIRECTORY.md * Update codespell.yml Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
24 lines
891 B
YAML
24 lines
891 B
YAML
# The objective of this GitHub Action is to update the DIRECTORY.md file (if needed)
|
|
# when doing a git push
|
|
name: directory_writer
|
|
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1 # v1, NOT v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.x
|
|
- name: Write DIRECTORY.md
|
|
run: |
|
|
scripts/build_directory_md.py 2>&1 | tee DIRECTORY.md
|
|
git config --global user.name github-actions
|
|
git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com'
|
|
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
|
|
- name: Update DIRECTORY.md
|
|
run: |
|
|
git add DIRECTORY.md
|
|
git commit -am "updating DIRECTORY.md" || true
|
|
git push --force origin HEAD:$GITHUB_REF || true
|