dstroy0 / InputHandler

Arduino input handler
https://dstroy0.github.io/InputHandler/
GNU General Public License v3.0
1 stars 0 forks source link

main branch protection #70

Open dstroy0 opened 1 year ago

dstroy0 commented 1 year ago

I'm in the process of rewriting workflows for status checks, there are going to be several must pass checks to merge into main. All the examples need to build successfully etc. Some of these jobs have a hundred subchecks or more so I put something like this

build-adafruit:
    runs-on: ubuntu-latest
    name: build-adafruit-platforms-success
    needs:
      [
        build-lib-arduino,
        build-tool-cli-arduino,
        build-lib-pio,
        build-tool-cli-pio,
      ]
    steps:
    - name: echo
      run: echo Build Adafruit platforms success!

and use that as the status check to make it not insanely long