From 6fd8ecfe2cdbb5b59646e57d6a4c25b3e7f1b3dc Mon Sep 17 00:00:00 2001 From: "freckle-automation-app[bot]" <176077675+freckle-automation-app[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 01:21:32 +0000 Subject: [PATCH 1/4] Add .github/workflows/mergeabot.yml --- .github/workflows/mergeabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/mergeabot.yml diff --git a/.github/workflows/mergeabot.yml b/.github/workflows/mergeabot.yml new file mode 100644 index 0000000..90e154b --- /dev/null +++ b/.github/workflows/mergeabot.yml @@ -0,0 +1,19 @@ +name: Mergeabot + +on: + schedule: + - cron: "0 0 * * *" + + pull_request: + +permissions: + contents: write + pull-requests: write + +jobs: + mergeabot: + runs-on: ubuntu-latest + steps: + - uses: freckle/mergeabot-action@v2 + with: + quarantine-days: -1 From ec35ea39a161172affb1f8c9c79111bfe4685336 Mon Sep 17 00:00:00 2001 From: "freckle-automation-app[bot]" <176077675+freckle-automation-app[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 04:43:33 +0000 Subject: [PATCH 2/4] Add .github/workflows/ci.yml --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..5fe64ca --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: CI + +on: + pull_request: + push: + branches: main + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + cache: yarn + node-version-file: '.nvmrc' + - run: yarn install + - run: yarn build + - run: yarn test --passWithNoTests From 9728b535aa9c0ffaa11f59dda28a04b4de1b92aa Mon Sep 17 00:00:00 2001 From: Joris Buchou Date: Mon, 22 Jun 2026 09:36:59 -0700 Subject: [PATCH 3/4] Delete .github/workflows/ci.yml --- .github/workflows/ci.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 5fe64ca..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: CI - -on: - pull_request: - push: - branches: main - -permissions: - contents: read - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - cache: yarn - node-version-file: '.nvmrc' - - run: yarn install - - run: yarn build - - run: yarn test --passWithNoTests From 3a8eba1a8245e09807c540cac54704151d670c81 Mon Sep 17 00:00:00 2001 From: "freckle-automation-app[bot]" <176077675+freckle-automation-app[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 17:09:17 +0000 Subject: [PATCH 4/4] Add .github/workflows/ci.yml --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..5fe64ca --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: CI + +on: + pull_request: + push: + branches: main + +permissions: + contents: read + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + cache: yarn + node-version-file: '.nvmrc' + - run: yarn install + - run: yarn build + - run: yarn test --passWithNoTests