Plugin requires marlin-binary-protocol, but it won't install: longintrepr.h: no such file or directory #12
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
# | |
# unlock-reopened.yml | |
# Unlock an issue whenever it is re-opened | |
# | |
name: Unlock Reopened Issue | |
on: | |
issues: | |
types: [reopened] | |
jobs: | |
unlock: | |
name: Unlock Reopened Issues | |
if: github.repository == 'OctoPrint/OctoPrint-FirmwareUpdater' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: OSDKDev/unlock-issues@v1.1 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |