Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/workflow_run.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: Workflow Run Action
on:
workflow_dispatch:
inputs:
release_notes:
description: "release notes"
required: true
workflow_run:
workflows:
# - Main Action
- Main Action
# - ESLint
# - GitHub Actions / ESLint
- Lint
Expand Down Expand Up @@ -45,4 +50,4 @@ jobs:
uses: docker://alpine:latest
with:
entrypoint: /bin/echo
args: Hello, World From On Failure!
args: Hello, World From On Failure!
2 changes: 1 addition & 1 deletion js/sample.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const a = 0;
const b = 1;
if (a != b) {
if (a !== b) {
console.log('not equal');
} else {
console.log('equal.');
Expand Down