Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideViolante committed Apr 17, 2023
1 parent cf7bb41 commit b5a3c7d
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 39 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The webhook URL (required). More info [here (Slack)](https://api.slack.com/messa

### provider

Chat provider, `slack`, `Rocket` or `msteams` (required). Default `slack`.
Chat provider, `slack`, `rocket` or `msteams` (required). Default `slack`.

### channel

Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
pr-reviews-reminder:
runs-on: ubuntu-latest
steps:
- uses: davideviolante/pr-reviews-reminder-action@v2.6.0
- uses: davideviolante/pr-reviews-reminder-action@v2.7.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
24 changes: 14 additions & 10 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6493,7 +6493,7 @@ module.exports = require("zlib");
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {

"use strict";
// Axios v1.3.4 Copyright (c) 2023 Matt Zabriskie and contributors
// Axios v1.3.5 Copyright (c) 2023 Matt Zabriskie and contributors


const FormData$1 = __nccwpck_require__(4334);
Expand Down Expand Up @@ -8072,9 +8072,7 @@ function parseTokens(str) {
return tokens;
}

function isValidHeaderName(str) {
return /^[-_a-zA-Z]+$/.test(str.trim());
}
const isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());

function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {
if (utils.isFunction(filter)) {
Expand Down Expand Up @@ -8447,7 +8445,7 @@ function buildFullPath(baseURL, requestedURL) {
return requestedURL;
}

const VERSION = "1.3.4";
const VERSION = "1.3.5";

function parseProtocol(url) {
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
Expand Down Expand Up @@ -10249,11 +10247,17 @@ class Axios {
}, false);
}

if (paramsSerializer !== undefined) {
validator.assertOptions(paramsSerializer, {
encode: validators.function,
serialize: validators.function
}, true);
if (paramsSerializer != null) {
if (utils.isFunction(paramsSerializer)) {
config.paramsSerializer = {
serialize: paramsSerializer
};
} else {
validator.assertOptions(paramsSerializer, {
encode: validators.function,
serialize: validators.function
}, true);
}
}

// Set config.method
Expand Down
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pr-reviews-reminder-action",
"version": "2.6.0",
"version": "2.7.0",
"description": "Reminder for Pull Request pending reviews",
"scripts": {
"build": "ncc build index.js",
Expand All @@ -20,11 +20,11 @@
"homepage": "https://github.com/DavideViolante/pr-reviews-reminder-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"axios": "^1.3.4"
"axios": "^1.3.5"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^8.37.0",
"eslint": "^8.38.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
Expand Down

0 comments on commit b5a3c7d

Please sign in to comment.