From aedb4c26deb91b1f9e3839475386c8e173e3598e Mon Sep 17 00:00:00 2001 From: Juan Carlos Date: Sat, 1 Jul 2023 13:18:21 -0300 Subject: Bisect Bugs (#22157) * Add Git bisect like for bug repro code on issue comments against Nim versions >1.0 * Add Git bisect like for bug repro code on issue comments against Nim versions >1.0 * Add Git bisect like for bug repro code on issue comments against Nim versions >1.0 --- .github/workflows/bisects.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/bisects.yml diff --git a/.github/workflows/bisects.yml b/.github/workflows/bisects.yml new file mode 100644 index 000000000..c755ef5a2 --- /dev/null +++ b/.github/workflows/bisects.yml @@ -0,0 +1,20 @@ +# See https://github.com/juancarlospaco/nimrun-action/issues/3#issuecomment-1607344901 +name: issue comments bisects +on: + issue_comment: + types: created + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + # nimrun-action requires Nim installed. + - uses: jiro4989/setup-nim-action@v1 + with: + nim-version: 'devel' + + - uses: juancarlospaco/nimrun-action@nim + with: + github-token: ${{ secrets.GITHUB_TOKEN }} -- cgit 1.4.1-2-gfad0