Skip to content

Update URL references following the organization name change #60850

Update URL references following the organization name change

Update URL references following the organization name change #60850

Workflow file for this run

name: lint
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
permissions:
contents: write
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️ ${{ github.event.repository.name }}
uses: actions/checkout@v4
- name: Get changed files
if: github.event_name == 'pull_request'
id: changed-files
uses: lots0logs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Python 🐍
uses: actions/setup-python@v4
with:
python-version: 3.10.14
- name: Run pre-commit 🚀
uses: pre-commit/[email protected]
with:
extra_args: ${{ github.event_name == 'pull_request' && format('--files {0}', join(fromJSON(steps.changed-files.outputs.all), ' ')) || '--all-files' }}