Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dummy1 #1100

Draft
wants to merge 25 commits into
base: master
Choose a base branch
from
Draft

Dummy1 #1100

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
34 changes: 34 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
workflow "MyDemoWorkFlow" {
on = "push"
resolves = ["GitHub Action for npm-1"]
}

action "GitHub Action for npm" {
uses = "actions/npm@e7aaefe"
args = "install"
secrets = ["GITHUB_TOKEN"]
}

action "GitHub Action for npm-1" {
uses = "actions/npm@e7aaefe"
needs = ["GitHub Action for npm"]
args = "ls"
secrets = ["GITHUB_TOKEN"]
}

workflow "DummyFlow" {
on = "push"
resolves = ["actions/bin/sh"]
}

action "actions/bin/sh@5968b3a61ecdca99746eddfdc3b3aab7dc39ea31" {
uses = "actions/bin/sh@5968b3a61ecdca99746eddfdc3b3aab7dc39ea31"
args = "ls"
secrets = ["GITHUB_TOKEN"]
}

action "actions/bin/sh" {
uses = "actions/bin/sh@5968b3a61ecdca99746eddfdc3b3aab7dc39ea31"
needs = ["actions/bin/sh@5968b3a61ecdca99746eddfdc3b3aab7dc39ea31"]
args = "ls $HOME"
}
16 changes: 16 additions & 0 deletions .whitesource
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"scanSettings": {
"configMode": "AUTO",
"configExternalURL": "",
"projectToken": "",
"baseBranches": []
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure"
},
"issueSettings": {
"minSeverityLevel": "LOW"
}
}


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# forever
# forever and not forever

[![Join the chat at https://gitter.im/foreverjs/forever](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/foreverjs/forever?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Expand Down
1 change: 1 addition & 0 deletions ios.dummy
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "forever",
"preferGlobal": "true",
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"description": "2 A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"version": "0.15.3",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"maintainers": [
Expand All @@ -18,7 +18,8 @@
"sysadmin",
"tools"
],
"dependencies": {
"dependencies":
"node-sass": "4.13.1",
"cliff": "~0.1.9",
"clone": "^1.0.2",
"colors": "~0.6.2",
Expand Down
Loading