From ee9cda3fd25824b269a72e0b800be44cd8410a30 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 19 Nov 2023 01:52:32 +0100 Subject: [PATCH] Added a package.json --- .pre-commit-config.yaml | 1 + package.json | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 package.json diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7db246c..c3a9d43 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,6 +18,7 @@ repos: - id: check-symlinks - id: check-docstring-first - id: pretty-format-json + args: [--autofix, --no-sort-keys, --no-ensure-ascii] - id: check-merge-conflict - id: no-commit-to-branch args: [--branch, main] diff --git a/package.json b/package.json new file mode 100644 index 0000000..b35bf72 --- /dev/null +++ b/package.json @@ -0,0 +1,11 @@ +{ + "name": "gitea-acxt-create-pr", + "version": "1.0.0", + "description": "My custom GitHub Action", + "main": "index.js", + "dependencies": { + "@actions/core": "^1.2.6", + "@actions/github": "^4.0.0", + "@octokit/rest": "^18.0.0" + } +}