Skip to content

Commit

Permalink
Updating names
Browse files Browse the repository at this point in the history
  • Loading branch information
sarrubia committed Feb 21, 2024
1 parent 37c4f3c commit d741c14
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"editor.rulers": [100],
"editor.codeActionsOnSave": {
"source.fixAll": true
"source.fixAll": "explicit"
},
"editor.formatOnSave": true,
"eslint.enable": true,
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ In this mode, the SDK loads a mapping of split name to treatment from a file at
- name: Evaluate action step
id: evaluator
uses: sarrubia/splitio-evaluator-ga@v1.1
uses: splitio/split-evaluator-action@v1.0
with:
api-key: 'localhost'
key: ${{ secrets.SPLIT_EVAL_KEY }}
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
steps:
- name: Evaluate action step
id: evaluator
uses: sarrubia/splitio-evaluator-ga@v1.0
uses: splitio/split-evaluator-action@v1.0
with:
api-key: ${{ secrets.SPLIT_API_KEY }}
key: ${{ secrets.SPLIT_EVAL_KEY }}
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
steps:
- name: Evaluate action step
id: evaluator
uses: sarrubia/splitio-evaluator-ga@v1.0
uses: splitio/split-evaluator-action@v1.0
with:
api-key: ${{ secrets.SPLIT_API_KEY }}
key: ${{ secrets.SPLIT_EVAL_KEY }}
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
steps:
- name: Evaluate action step
id: evaluator
uses: sarrubia/splitio-evaluator-ga@v1.0
uses: splitio/split-evaluator-action@v1.0
with:
api-key: ${{ secrets.SPLIT_API_KEY }}
key: ${{ secrets.SPLIT_EVAL_KEY }}
Expand Down
34 changes: 17 additions & 17 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: 'Split Software Evaluator'
author: 'Sebastian Arrubia (github.com/sarrubia)'
description: 'Evaluates your Split Feature Flags and set the evaluation treatments as output'
name: "Split Software Evaluator"
author: "Sebastian Arrubia (github.com/splitio)"
description: "Evaluates your Split Feature Flags and set the evaluation treatments as output"
inputs:
api-key: # Split api key
description: 'Split API key'
api-key: # Split api key
description: "Split API key"
required: true
default: ''
key: # user/evaluation key
description: 'Evaluation key'
default: ""
key: # user/evaluation key
description: "Evaluation key"
required: true
default: ''
default: ""
splits:
description: 'Splits to be evaluated'
description: "Splits to be evaluated"
required: true
default: ''
default: ""
outputs:
result:
description: 'Evaluation results represented as JSON'
result:
description: "Evaluation results represented as JSON"
runs:
using: 'node12'
main: 'index.js'
using: "node12"
main: "index.js"
branding:
icon: 'git-merge'
color: 'blue'
icon: "git-merge"
color: "blue"
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "split-evaluator-github-action",
"version": "1.0.0",
"description": "GIthub action to evaluate Splits",
"description": "Github action to evaluate Splits",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarrubia/split-evaluator-github-action.git"
"url": "git+https://github.com/splitio/split-evaluator-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sarrubia/split-evaluator-github-action/issues"
"url": "https://github.com/splitio/split-evaluator-action/issues"
},
"homepage": "https://github.com/sarrubia/split-evaluator-github-action#readme",
"homepage": "https://github.com/splitio/split-evaluator-action#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
Expand All @@ -25,4 +25,4 @@
"devDependencies": {
"eslint": "^8.13.0"
}
}
}

0 comments on commit d741c14

Please sign in to comment.