Skip to content

Commit

Permalink
Update README.md to reflect ownership change
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-fields authored Feb 16, 2022
1 parent a6e7992 commit cb395a0
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

Allows data to be shared between jobs and accessed via env variables and step output

**NOTE:** Ownership of this project was transferred to my personal account `nick-fields` from my work account `nick-invision`. Details [here](#Ownership)

---

## **Inputs**
Expand All @@ -27,7 +29,7 @@ Allows data to be shared between jobs and accessed via env variables and step ou
### Example storing data

```yaml
- uses: nick-invision/persist-action-data@v1
- uses: nick-fields/persist-action-data@v1
with:
data: ${{ steps.some-step.output.some-output }}
variable: SOME_STEP_OUTPUT
Expand All @@ -36,7 +38,7 @@ Allows data to be shared between jobs and accessed via env variables and step ou
### Example using data from another job via env variable
```yaml
- uses: nick-invision/persist-action-data@v1
- uses: nick-fields/persist-action-data@v1
with:
data: ${{ steps.some-step.output.some-output }}
retrieve_variables: SOME_STEP_OUTPUT, SOME_OTHER_STEP_OUTPUT
Expand All @@ -46,10 +48,19 @@ Allows data to be shared between jobs and accessed via env variables and step ou
### Example using data from another job via output
```yaml
- uses: nick-invision/persist-action-data@v1
- uses: nick-fields/persist-action-data@v1
id: global-data
with:
data: ${{ steps.some-step.output.some-output }}
retrieve_variables: SOME_STEP_OUTPUT, SOME_OTHER_STEP_OUTPUT
- run: echo ${{ steps.global-data.outputs.SOME_STEP_OUTPUT }}
```
---
## **Ownership**
As of 2022/02/15 ownership of this project has been transferred to my personal account `nick-fields` from my work account `nick-invision` due to me leaving InVision. I am the author and have been the primary maintainer since day one and will continue to maintain this as needed.

No immediate action is required if you rely on this as GitHub handles ownership transfers pretty well. Any current workflow reference to `nick-invision/persist-action-data@<whatever>` will still work, but will just pull from `nick-fields/persist-action-data@<whatever>` instead. Who knows how long that will work, so at some point it would be beneficial to update your workflows to reflect the new owner accordingly.

0 comments on commit cb395a0

Please sign in to comment.