Skip to content

Commit

Permalink
removed codeql workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
raianand committed Feb 13, 2024
1 parent a41619e commit 5e6278c
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 82 deletions.
71 changes: 0 additions & 71 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

34 changes: 25 additions & 9 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,34 @@
name: 'The name of your action here'
description: 'Provide a description here'
author: 'Your name or organization here'
name: 'Bolt'
description: 'Bolt - Transparnt egress gateway for build environments'
author: 'Koalalab-inc'

# Define your inputs here.
inputs:
milliseconds:
description: 'Your input description here'
required: true
default: '1000'
mode:
description: 'Mode of operation - audit or block'
required: false
default: 'audit'
allow_http:
description: 'Allow HTTP traffic'
required: false
default: false
default_policy:
description: 'Default policy for egress traffic - allow-all or block-all'
required: false
default: 'block-all'
egress_rules:
description: 'Egress rules'
required: false
default: |
- name: 'Allow ifconfig.me'
action: 'allow'
domain: 'ifconfig.me'
# Define your outputs here.
outputs:
time:
description: 'Your output description here'
result:
description: 'Result of the action'
required: false

runs:
using: node20
Expand Down
16 changes: 15 additions & 1 deletion package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
]
},
"dependencies": {
"@actions/core": "^1.10.1"
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
Expand Down

0 comments on commit 5e6278c

Please sign in to comment.