infra: DLOPS-320 add hash to all GH actions #2229
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: "🏷️ Validate PR Name" | |
| on: | |
| pull_request: | |
| types: [opened, reopened, edited, synchronize] | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| commitlint-pr-title: | |
| name: Ensure proper PR title | |
| runs-on: [ self-hosted, linux, k8s-runner-no-compose ] | |
| steps: | |
| - name: Commitlint PR title | |
| uses: datalens-tech/commitlint-action@7034d46de9ef5f5115b0a5d79a5bc9076515f853 # v1.0.0 | |
| add_labels: | |
| runs-on: [ self-hosted, linux, k8s-runner-no-compose ] | |
| needs: commitlint-pr-title | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Add labels to PR | |
| uses: datalens-tech/add-labels-action@4aad9f32de129ffde2d8a14e53b1acfb6d8a3b39 # v1.0.7 |