Skip to content

Fix a bug breaking middle-click drag in creative mode #13

Fix a bug breaking middle-click drag in creative mode

Fix a bug breaking middle-click drag in creative mode #13

Workflow file for this run

# Synchronizes the repo's labels with labels.yml
# Requires GITHUB_TOKEN to have write permissions; if not, replace it with a custom token
name: Sync Labels
on:
push:
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 22
- run: curl https://raw.githubusercontent.com/TerminalMC/.github/HEAD/.github/labels.yml -o ./labels.yml
- run: npx github-label-sync -a '${{ secrets.GITHUB_TOKEN }}' -l 'labels.yml' ${{ github.repository }}