[Env][EuroHPC] Create installation environment for marenostrum-acc #2365
Workflow file for this run
This file contains hidden or 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: autofix.ci # needed to securely identify the workflow | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, labeled] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: ${{ github.ref_name != 'main' }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'autofix.ci') }} | |
| runs-on: ubuntu-latest | |
| env: | |
| FIX_MODE: "${{ contains(github.event.pull_request.labels.*.name, 'autofix.ci') && 'fix' || 'check' }}" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '>=3.10' | |
| - uses: pre-commit/action@v3.0.1 | |
| continue-on-error: true | |
| - name: Commit and push if changed | |
| if: env.FIX_MODE == 'fix' | |
| uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 | |
| with: | |
| commit-message: '[autofix.ci] automatic fix: pre-commit hooks' |