Skip to content

Pin dependencies

Pin dependencies #1052

Workflow file for this run

name: Check PR
# Controls when the workflow will run
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- labeled
- unlabeled
- reopened
- edited
permissions:
pull-requests: write
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
auto_assign:
name: Auto Assign
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Assign Me
# You may pin to the exact commit or the version.
uses: kentaro-m/auto-assign-action@746a3a558fdd0e061f612ec9f8ff1b8a19c1a115 # v1.2.1
with:
configuration-path: '.github/auto_assign.yml'
check_labels:
name: Check Required Labels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e # v1
- uses: ./.github/actions/check-pr-semver-labels
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
check_size:
runs-on: ubuntu-latest
name: Check Size
steps:
- name: Check PR Size
uses: pagopa/github-actions-template/check-pr-size@3fae741d94bcb9873f2447e95cc4ddea6f77be4d
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
ignored_files: 'src/test/'