Skip to content

chore(deps-dev): update actions/checkout action to v4 #4

chore(deps-dev): update actions/checkout action to v4

chore(deps-dev): update actions/checkout action to v4 #4

Workflow file for this run

name: pr-verify
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
size-label:
runs-on:
labels:
- minimalistic-v2
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Get shared actions
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: 'DoodleScheduling/actions'
ref: v3
path: './.actions'
token: ${{ secrets.GH_ACTIONS }}
- uses: ./.actions/pull-request-size
with:
token: ${{ secrets.GH_ACTIONS }}
timeout-minutes: 45
pr-title:
runs-on:
labels:
- minimalistic-v2
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Get shared actions
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: 'DoodleScheduling/actions'
ref: v3
path: './.actions'
token: ${{ secrets.GH_ACTIONS }}
- uses: ./.actions/pull-request-title
with:
token: ${{ secrets.GH_ACTIONS }}
timeout-minutes: 45
release-label:
runs-on:
labels:
- minimalistic-v2
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout source
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Get shared actions
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: 'DoodleScheduling/actions'
ref: v3
path: './.actions'
token: ${{ secrets.GH_ACTIONS }}
- uses: ./.actions/preview-release
with:
token: ${{ secrets.GH_ACTIONS }}
timeout-minutes: 45