Skip to content

chore(deps): bump the actions group across 4 directories with 2 updates #394

chore(deps): bump the actions group across 4 directories with 2 updates

chore(deps): bump the actions group across 4 directories with 2 updates #394

Workflow file for this run

name: "PR checks"
on: # zizmor: ignore[dangerous-triggers]
pull_request_target:
types:
- opened
- reopened
- edited
- synchronize
permissions: {}
jobs:
validate-title:
runs-on: ubuntu-slim
permissions:
pull-requests: read
steps:
- name: Validate PR title
uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
label-from-title:
name: Auto-label PR
permissions:
contents: read
pull-requests: write
statuses: write
checks: write
runs-on: ubuntu-slim
steps:
- uses: fuxingloh/multi-labeler@bcd50af464202999e57f556b4aefcf05a34abf85 # v5.0.0
validate-branch-name:
name: Validate branch name
runs-on: ubuntu-slim
steps:
- if: github.head_ref == 'main' || github.head_ref == 'master'
run: |
echo "Error: Pull requests from branch $GITHUB_HEAD_REF not allowed"
exit 1
shell: bash