Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
feat: log full error stack if possible
Browse files Browse the repository at this point in the history
  • Loading branch information
z0al committed Apr 9, 2021
1 parent 1ba8767 commit 37acd69
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
> **Note:** Dependabot issues and pull requests are no longer supported. See the [changes](#changes) section below for details.
# Dependent Issues

> A GitHub Action for marking issues as dependent on another
Expand Down Expand Up @@ -69,7 +67,7 @@ Here how it can look like in practice:

- **GITHUB_TOKEN** (Required): The token to use to make API calls to GitHub.

## Changes
## Changelog

- **March 20, 2021:** To avoid unnecessary failure due to [insufficient permissions][dependabot-change] on Dependabot PRs, all Dependabot issues and pull requests are now ignored. This behavior is not configurable.

Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

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

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ export async function start() {
try {
await checkIssues(await getActionContext());
} catch (error) {
core.setFailed(error.message);
core.setFailed(error.stack || error.message);
}
}

0 comments on commit 37acd69

Please sign in to comment.