.github/workflows/sync-labels.yml: remove workflow

This commit is contained in:
Bevan Kay 2024-05-16 13:26:30 +10:00
parent d602fee79f
commit 4064499ed6
No known key found for this signature in database
GPG Key ID: C55CB024B5314B57
1 changed files with 0 additions and 27 deletions

View File

@ -1,27 +0,0 @@
name: Sync labels.
on: label
permissions:
contents: read
jobs:
sync-labels:
if: github.repository == 'Homebrew/homebrew-cask'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Event Data
run: |
echo '${{ toJSON(github.event) }}'
- name: Sync Labels
run: |
gem install --user-install octokit
./.github/actions/sync/labels.rb '${{ github.repository }}' \
Homebrew/homebrew-cask-fonts
env:
GITHUB_TOKEN: ${{ secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN }}