[PR #12] [MERGED] v2.0.0 #21

Closed
opened 2026-03-29 17:50:43 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/joelwmale/webhook-action/pull/12
Author: @joelwmale
Created: 8/26/2020
Status: Merged
Merged: 8/26/2020
Merged by: @joelwmale

Base: masterHead: develop


📝 Commits (10+)

  • 00f9588 Convert action to ts
  • 600d4f0 Small fixes to action.yml and action output
  • e4e62ab Add node_modules until bundler is added
  • 1cbd7b0 Add node-fetch
  • f43e864 Remove fetch, add axios
  • 0740593 Update build
  • a2c63f8 Fix issue with res.status being undefined
  • d4413d8 Update logging for debug purposes
  • cfebc00 Attempt to fix missing status code output
  • db36b9f Attempt to have code wait for request to finish

📊 Changes

5740 files changed (+1689438 additions, -49 deletions)

View changed files

.eslintignore (+1 -0)
.eslintrc.json (+18 -0)
.github/dependabot.yml (+9 -0)
.gitignore (+53 -0)
.prettierignore (+3 -0)
.prettierrc.json (+10 -0)
Dockerfile (+0 -20)
📝 README.md (+33 -25)
action.yml (+18 -0)
dist/http.js (+29 -0)
dist/http.js.map (+1 -0)
dist/index.js (+2196 -0)
dist/index.js.map (+1 -0)
dist/main.js (+65 -0)
dist/main.js.map (+1 -0)
dist/sourcemap-register.js (+3912 -0)
entrypoint.sh (+0 -4)
node_modules/.bin/acorn (+1 -0)
node_modules/.bin/eslint (+1 -0)
node_modules/.bin/eslint-config-prettier-check (+1 -0)

...and 80 more files

📄 Description

  • Convert project to Javascript/Typescript
  • Allow custom headers to be passed in (optional)
  • Allow body to be optional

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/joelwmale/webhook-action/pull/12 **Author:** [@joelwmale](https://github.com/joelwmale) **Created:** 8/26/2020 **Status:** ✅ Merged **Merged:** 8/26/2020 **Merged by:** [@joelwmale](https://github.com/joelwmale) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`00f9588`](https://github.com/joelwmale/webhook-action/commit/00f958821e9ae7c233aa18809726de4307cfdcea) Convert action to ts - [`600d4f0`](https://github.com/joelwmale/webhook-action/commit/600d4f061c5c21629d06fb6e53b7f9358fac484a) Small fixes to action.yml and action output - [`e4e62ab`](https://github.com/joelwmale/webhook-action/commit/e4e62ab7e8fb598936f32d37a2dcbdd4d3d1bf43) Add node_modules until bundler is added - [`1cbd7b0`](https://github.com/joelwmale/webhook-action/commit/1cbd7b0bbca599e2879e62fc62f2799135fef511) Add node-fetch - [`f43e864`](https://github.com/joelwmale/webhook-action/commit/f43e86409d174aa4bc5314d630eb43639546c3ee) Remove fetch, add axios - [`0740593`](https://github.com/joelwmale/webhook-action/commit/0740593bc2c2d84bdbe246fd7739beff21160f3a) Update build - [`a2c63f8`](https://github.com/joelwmale/webhook-action/commit/a2c63f8d085ec315e0cc5bd70dcd38899a8ecf38) Fix issue with res.status being undefined - [`d4413d8`](https://github.com/joelwmale/webhook-action/commit/d4413d8be7d4c71f8825883c9399c1e6ab54af85) Update logging for debug purposes - [`cfebc00`](https://github.com/joelwmale/webhook-action/commit/cfebc0072178176c3395989e5bb4384bd3e7d8a0) Attempt to fix missing status code output - [`db36b9f`](https://github.com/joelwmale/webhook-action/commit/db36b9f17843f6ef52604173fb40041eb4ef2ad5) Attempt to have code wait for request to finish ### 📊 Changes **5740 files changed** (+1689438 additions, -49 deletions) <details> <summary>View changed files</summary> ➕ `.eslintignore` (+1 -0) ➕ `.eslintrc.json` (+18 -0) ➕ `.github/dependabot.yml` (+9 -0) ➕ `.gitignore` (+53 -0) ➕ `.prettierignore` (+3 -0) ➕ `.prettierrc.json` (+10 -0) ➖ `Dockerfile` (+0 -20) 📝 `README.md` (+33 -25) ➕ `action.yml` (+18 -0) ➕ `dist/http.js` (+29 -0) ➕ `dist/http.js.map` (+1 -0) ➕ `dist/index.js` (+2196 -0) ➕ `dist/index.js.map` (+1 -0) ➕ `dist/main.js` (+65 -0) ➕ `dist/main.js.map` (+1 -0) ➕ `dist/sourcemap-register.js` (+3912 -0) ➖ `entrypoint.sh` (+0 -4) ➕ `node_modules/.bin/acorn` (+1 -0) ➕ `node_modules/.bin/eslint` (+1 -0) ➕ `node_modules/.bin/eslint-config-prettier-check` (+1 -0) _...and 80 more files_ </details> ### 📄 Description - Convert project to Javascript/Typescript - Allow custom headers to be passed in (optional) - Allow body to be optional --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-03-29 17:50:43 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/webhook-action#21