Skip to content

Commit bb00085

Browse files
committed
update readme
1 parent ea11b30 commit bb00085

File tree

1 file changed

+63
-9
lines changed

1 file changed

+63
-9
lines changed

README.md

Lines changed: 63 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
<a href="https://reporacers.com/" taarget="_blank">
2+
<img src="https://github.com/repo-racers/.github/blob/main/profile/repo-racers.svg" alt="Repo Raacers" width="600px"/>
3+
</a>
4+
5+
This repository is included in our open-source Pro Support service which offers an efficient solution for managing popular GitHub Actions dependencies with ease:
6+
7+
🙌 forked from [FranciscoKloganB/secrets-to-environment-variables-action](https://github.com/FranciscoKloganB/secrets-to-environment-variables-action)
8+
9+
<details>
10+
11+
<summary>What is Open-Source Pro Support?</summary>
12+
13+
Open-Source Pro Support is a comprehensive service designed to streamline your workflow by providing:
14+
15+
- **Customized Forks:** We create public forks of popular GitHub Actions, ensuring you have access to the latest features and fixes.
16+
17+
- **Dedicated Technical Support:** Say goodbye to the hassle of managing multiple open-source dependencies. With our service, you have a single point of contact for all your support needs. Reach out to us on our [Discord](https://discord.com/channels/1229786735161118882/1229786735161118885) server, and our team of experts will be ready to assist you.
18+
19+
- **Priority Fixes:** Experience seamless issue resolution with our priority fix service. If you encounter any issues with our forks, we prioritize fixing them promptly to minimize disruptions to your workflow.
20+
21+
- **Community Contribution:** We believe in giving back to the open-source community. When we fix issues in our forks, we handle creating pull requests to the original authors, ensuring that the entire community benefits from the improvements.
22+
23+
</details>
24+
25+
<details>
26+
27+
<summary>How It Works</summary>
28+
29+
30+
1. **Choose Our Fork:** Instead of referencing popular GitHub Actions repositories directly, simply reference this repository in your workflow.
31+
32+
2. **Enjoy Dedicated Support:** If you encounter any issues or need assistance, reach out to us on our [Discord](https://discord.com/channels/1229786735161118882/1229786735161118885) server. Our team will be happy to help you promptly.
33+
34+
3. **Benefit from Priority Fixes:** Experience seamless issue resolution with our priority fix service. We prioritize fixing issues in our forks to ensure smooth operation for your projects.
35+
36+
4. **Contribute to the Community:** Rest assured that when we fix issues in our forks, we contribute back to the original repositories, benefiting the entire open-source community.
37+
38+
*Not Your Thing?*
39+
40+
We don't want to get in between you and the community. If you want to handle forking and submitting a pull request yourself, that's awesome.
41+
42+
However, feel free to reach out to us on [Discord](https://discord.com/channels/1229786735161118882/1229786735161118885) anyway if you need any help and advice in doing so.
43+
44+
:heart: [open-source](https://opensource.org/)
45+
46+
</details>
47+
48+
---
49+
150
# GitHub secrets to environment variables
251

352
This Action reads your repository's GitHub Secrets and exports them as environment variables make them available to Actions within your Workflows.
@@ -18,7 +67,7 @@ Original credit goes to [oNaiPs](https://github.com/oNaiPs/secrets-to-env-action
1867
Add the following action to your workflow:
1968

2069
```yaml
21-
- uses: franciscokloganb/secrets-to-environment-variables-action@v1
70+
- uses: repo-racers/secrets-to-environment-variables-action@v0.0.1
2271
with:
2372
secrets: ${{ toJSON(secrets) }}
2473
```
@@ -32,7 +81,7 @@ _Note the `secrets` key. It is **mandatory** so the action can read and export t
3281
```yaml
3382
steps:
3483
- uses: actions/checkout@v3
35-
- uses: franciscokloganb/secrets-to-environment-variables-action@v1
84+
- uses: repo-racers/secrets-to-environment-variables-action@v0.0.1
3685
with:
3786
secrets: ${{ toJSON(secrets) }}
3887
- run: echo "Value of MY_SECRET: $MY_SECRET"
@@ -57,7 +106,7 @@ steps:
57106
```yaml
58107
steps:
59108
- uses: actions/checkout@v3
60-
- uses: franciscokloganb/secrets-to-environment-variables-action@v1
109+
- uses: repo-racers/secrets-to-environment-variables-action@v0.0.1
61110
with:
62111
include: MY_SECRET, MY_OTHER_SECRETS_*
63112
secrets: ${{ toJSON(secrets) }}
@@ -77,7 +126,7 @@ It is possible to add and remove prefixes and suffixes from all the secrets foun
77126
```yaml
78127
steps:
79128
- uses: actions/checkout@v3
80-
- uses: franciscokloganb/secrets-to-environment-variables-action@v1
129+
- uses: repo-racers/secrets-to-environment-variables-action@v0.0.1
81130
with:
82131
add-prefix: PREFIX_
83132
secrets: ${{ toJSON(secrets) }}
@@ -89,7 +138,7 @@ steps:
89138
```yaml
90139
steps:
91140
- uses: actions/checkout@v3
92-
- uses: franciscokloganb/secrets-to-environment-variables-action@v1
141+
- uses: repo-racers/secrets-to-environment-variables-action@v0.0.1
93142
with:
94143
add-suffix: _SUFFIX
95144
secrets: ${{ toJSON(secrets) }}
@@ -103,7 +152,7 @@ Remove a prefix to all exported secrets, if present.
103152
```yaml
104153
steps:
105154
- uses: actions/checkout@v3
106-
- uses: franciscokloganb/secrets-to-environment-variables-action@v1
155+
- uses: repo-racers/secrets-to-environment-variables-action@v0.0.1
107156
with:
108157
remove-prefix: PREFIX_
109158
secrets: ${{ toJSON(secrets) }}
@@ -117,7 +166,7 @@ Remove a prefix to all exported secrets, if present.
117166
```yaml
118167
steps:
119168
- uses: actions/checkout@v3
120-
- uses: franciscokloganb/secrets-to-environment-variables-action@v1
169+
- uses: repo-racers/secrets-to-environment-variables-action@v0.0.1
121170
with:
122171
remove-suffix: _SUFFIX
123172
secrets: ${{ toJSON(secrets) }}
@@ -131,7 +180,7 @@ env:
131180
MY_SECRET: DONT_OVERRIDE
132181
steps:
133182
- uses: actions/checkout@v3
134-
- uses: franciscokloganb/secrets-to-environment-variables-action@v1
183+
- uses: repo-racers/secrets-to-environment-variables-action@v0.0.1
135184
with:
136185
override: true
137186
secrets: ${{ toJSON(secrets) }}
@@ -145,7 +194,7 @@ Converts all exported secrets case to `lower` or `upper`. Default is `upper`.
145194
```yaml
146195
steps:
147196
- uses: actions/checkout@v3
148-
- uses: franciscokloganb/secrets-to-environment-variables-action@v1
197+
- uses: repo-racers/secrets-to-environment-variables-action@v0.0.1
149198
with:
150199
convert: lower
151200
secrets: ${{ toJSON(secrets) }}
@@ -172,3 +221,8 @@ This can be seen as a pipeline of changes in the following order:
172221
- Convert case if applicable
173222
- Set Key unless key already exist and override is false
174223
- Export cloned key as an environment variable with its associated value
224+
225+
---
226+
227+
> [!TIP]
228+
> For support with this repo and many other open-source projects, visit us at https://reporacers.com/ and join us on [Discord](https://discord.com/channels/1229786735161118882/1229786735161118885).

0 commit comments

Comments
 (0)