end support for installing via cURL & npm (#2508) #68
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. | |
if: github.repository == 'onicagroup/runway' && github.actor != 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out code from GitHub | |
uses: actions/checkout@v4 | |
- name: 🚀 Run Label Maker | |
uses: crazy-max/ghaction-github-labeler@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
yaml-file: .github/labels.yml | |
skip-delete: false | |
dry-run: ${{ github.ref != 'refs/heads/master' }} |