Skip to content

Commit f8a1d5e

Browse files
authored
chore: rename repository export-secrets-action to export-secrets (#26)
1 parent 2102eb1 commit f8a1d5e

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
steps:
7979
- name: Checkout
8080
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
81-
- name: Run export-secrets-action
81+
- name: Run export-secrets
8282
uses: ./
8383
with:
8484
secrets: '{"KEY_A":"VALUE_A","KEY_B":"VALUE_B","KEY_C":"VALUE_C"}'

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# export-secrets-action
1+
# export-secrets
22

33
Export GitHub Actions secrets as environment variables.
44

@@ -8,7 +8,7 @@ Set the JSON of secrets to `secrets`.
88

99
```yaml
1010
steps:
11-
- uses: koyashiro/export-secrets-action@v0.4.1
11+
- uses: koyashiro/[email protected]
1212
with:
1313
secrets: ${{ toJSON(secrets) }}
1414
```
@@ -20,7 +20,7 @@ For example, a secret like `TF_VAR_EXAMPLE` will be exported as `TF_VAR_example`
2020

2121
```yaml
2222
steps:
23-
- uses: koyashiro/export-secrets-action@v0.4.1
23+
- uses: koyashiro/[email protected]
2424
with:
2525
secrets: ${{ toJSON(secrets) }}
2626
downcase-tf-var: true
@@ -33,7 +33,7 @@ For example, a secret like `TF_TOKEN_EXAMPLE_COM` will be exported as `TF_TOKEN_
3333

3434
```yaml
3535
steps:
36-
- uses: koyashiro/export-secrets-action@v0.4.1
36+
- uses: koyashiro/[email protected]
3737
with:
3838
secrets: ${{ toJSON(secrets) }}
3939
downcase-tf-token: true

Diff for: action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: export-secrets-action
1+
name: export-secrets
22
author: koyashiro <[email protected]>
33
description: Export GitHub Actions secrets as environment variables
44
inputs:

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"name": "export-secrets-action",
2+
"name": "export-secrets",
33
"version": "0.4.1",
44
"description": "Export GitHub Actions secrets as environment variables",
55
"keywords": [
66
"actions"
77
],
8-
"homepage": "https://github.com/koyashiro/export-secrets-action",
8+
"homepage": "https://github.com/koyashiro/export-secrets",
99
"bugs": {
10-
"url": "https://github.com/koyashiro/export-secrets-action/issues"
10+
"url": "https://github.com/koyashiro/export-secrets/issues"
1111
},
1212
"license": "MIT",
1313
"author": "koyashiro <[email protected]>",
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/koyashiro/export-secrets-action.git"
16+
"url": "https://github.com/koyashiro/export-secrets.git"
1717
},
1818
"scripts": {
1919
"build": "ncc build --license licenses.txt src/index.ts",

0 commit comments

Comments
 (0)