build(deps): bump actions/checkout from 3 to 4 #17
Workflow file for this run
This file contains 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
# Manage the labels of a GitHub repository as code. | |
name: Label Maker | |
on: | |
push: | |
paths: | |
- .github/workflows/label-maker.yml | |
- .github/labels.yml | |
jobs: | |
label-maker: | |
# skip running the job from forks | |
# uncomment and replace with the name of the repo | |
# if: github.repository == 'ITProKyle/generic-template' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Label Maker | |
uses: crazy-max/ghaction-github-labeler@v4 # cspell:ignore ghaction | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
yaml-file: .github/labels.yml | |
skip-delete: false | |
dry-run: ${{ github.ref != 'refs/heads/master' }} |