Skip to content
This repository has been archived by the owner on Jan 28, 2024. It is now read-only.

Commit

Permalink
Merge 0bb247a into 67caa4d
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Feb 22, 2022
2 parents 67caa4d + 0bb247a commit 8f520e1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 14 deletions.
10 changes: 0 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,6 @@ updates:
include: scope
prefix: build
directory: /
ignore:
- dependency-name: "actions/*"
update-types:
["version-update:semver-minor", "version-update:semver-patch"]
- dependency-name: "GoogleCloudPlatform/release-please-action"
update-types:
["version-update:semver-minor", "version-update:semver-patch"]
- dependency-name: "wagoid/commitlint-github-action"
update-types:
["version-update:semver-minor", "version-update:semver-patch"]
schedule:
interval: monthly

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
on-success:
if: >
github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.conclusion == 'success' &&
github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
save-pr-number:
name: Save PR Number
if: >
github.event.pull_request.draft == false &&
github.event.pull_request.draft == false &&
github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions src/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ async function getConfig() {
),
};
} catch (err) {
throw Error(
throw new Error(
`No such file or directory ${err.path} for SSL cert/key, falling back to HTTP`
);
}
Expand All @@ -355,7 +355,7 @@ async function getConfig() {
),
};
} catch (err) {
throw Error(
throw new Error(
`No such file or directory ${err.path} for PFX file, falling back to HTTP`
);
}
Expand Down

0 comments on commit 8f520e1

Please sign in to comment.