Skip to content

chore(deps): bump the github-actions group with 3 updates #483

chore(deps): bump the github-actions group with 3 updates

chore(deps): bump the github-actions group with 3 updates #483

Workflow file for this run

name: PR Labeler
on:
pull_request:
types: [opened, edited, reopened]
permissions: read-all
jobs:
update-labels:
name: Update PR labels
runs-on: ubuntu-latest
permissions:
pull-requests: write # Needed to update labels
steps:
- name: Check out
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- name: Setup go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v5
with:
go-version: oldstable
cache-dependency-path: '**/go.mod'
- name: Assign Labels
run: go -C _tools run ./conventionalcommit
env:
GITHUB_TOKEN: ${{ github.token }}