doc(conda): pinning python version (#816) #270
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
name: Standardize Code Format | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
push-format: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'chore(format): ') && !contains(github.event.head_commit.message, 'chore(env): ')" | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{github.ref_name}} | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
- name: Create venv | |
run: python3 -m venv .venv | |
- name: Activate venv | |
run: | | |
. .venv/bin/activate | |
echo PATH=$PATH >> $GITHUB_ENV | |
- name: Install Black | |
run: pip install "black[jupyter]" | |
- name: Run Black | |
# run: black $(git ls-files '*.py') | |
run: black . | |
- name: Commit Back | |
continue-on-error: true | |
id: commitback | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add --all | |
git commit -m "chore(format): run black on ${{github.ref_name}}" | |
- name: Create Pull Request | |
if: steps.commitback.outcome == 'success' | |
continue-on-error: true | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
delete-branch: true | |
body: "Automatically apply code formatter change" | |
title: "chore(format): run black on ${{github.ref_name}}" | |
commit-message: "chore(format): run black on ${{github.ref_name}}" | |
branch: formatter-${{github.ref_name}} |