From 3dcb24e7965f86e2557a8d5989cb022a4b05fe90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=82ngelo=20Tadeucci?= Date: Tue, 6 Jun 2023 19:42:51 -0300 Subject: [PATCH 1/3] Create dependabot.yml --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..aff82a10 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" -- 2.47.2 From 4e7bb71a6b405d538632e97da06373883de120b3 Mon Sep 17 00:00:00 2001 From: AngeloTadeucci Date: Tue, 6 Jun 2023 22:44:09 +0000 Subject: [PATCH 2/3] Apply prettier changes --- .github/dependabot.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index aff82a10..55e09ee1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "weekly" + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly" -- 2.47.2 From f99119ab59fff7a0c63614539132a34bb636cae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=82ngelo=20Tadeucci?= Date: Tue, 6 Jun 2023 20:09:58 -0300 Subject: [PATCH 3/3] Update prettier.yml --- .github/workflows/prettier.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 0e501c9b..26270f08 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -6,16 +6,18 @@ jobs: format: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v3.5.2 with: ref: ${{ github.head_ref }} - - uses: actions/setup-node@v1 + - name: Setup Node.js environment + uses: actions/setup-node@v2.5.2 with: node-version: "18.x" - run: npm ci - run: npm run prettier - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4.1.2 + uses: stefanzweifel/git-auto-commit-action@v4.16.0 with: commit_message: Apply prettier changes branch: ${{ github.head_ref }} -- 2.47.2