My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

unlock-reopened.yml 374B

12345678910111213141516171819202122
  1. #
  2. # unlock-reopened.yml
  3. # Unlock an issue whenever it is re-opened
  4. #
  5. name: "Unlock reopened issue"
  6. on:
  7. issues:
  8. types: [reopened]
  9. jobs:
  10. unlock:
  11. name: Unlock Reopened
  12. if: github.repository == 'MarlinFirmware/Marlin'
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: OSDKDev/unlock-issues@v1.1
  16. with:
  17. repo-token: "${{ secrets.GITHUB_TOKEN }}"