From 1e93e0987e020aef36ab1a8a85bc7e5bef4539c3 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Tue, 26 Nov 2024 18:22:09 -0500 Subject: [PATCH] ci: Reuse workflow for lint --- .github/workflows/lint.yml | 37 ++++++------------------------------- 1 file changed, 6 insertions(+), 31 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 84e1d34..8142481 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,34 +1,9 @@ name: Lint on: [push, pull_request] -env: - BASEDIR: https://raw.githubusercontent.com/open-contracting/standard-maintenance-scripts/main - OCDS_NOINDENT: 1 jobs: - build: - if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository - runs-on: ubuntu-latest - env: - PAT: ${{ secrets.PAT }} - steps: - - uses: actions/checkout@v4 - with: - token: ${{ secrets.PAT || github.token }} - - uses: actions/setup-python@v5 - with: - python-version: '3.11' - cache: pip - cache-dependency-path: '**/requirements*.txt' - - id: changed-files - uses: tj-actions/changed-files@v45 - - uses: pre-commit/action@v3.0.1 - continue-on-error: true - with: - extra_args: pip-compile --files ${{ steps.changed-files.outputs.all_changed_files }} - - if: ${{ env.PAT }} - uses: stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: '[github-actions] pre-commit autoupdate' - - shell: bash - run: curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash - - - shell: bash - run: curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash - + lint: + uses: open-contracting/.github/.github/workflows/lint.yml@main + permissions: + contents: write + ocds-noindent: 'yes' + skip-linter-requirements: true