Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siketyan/wait-for-ecr-replication-action
Waits for ECR repository replications to be succeeded on GitHub Actions.
https://github.com/siketyan/wait-for-ecr-replication-action
aws continuous-deployment ecr github-action
Last synced: about 1 month ago
JSON representation
Waits for ECR repository replications to be succeeded on GitHub Actions.
- Host: GitHub
- URL: https://github.com/siketyan/wait-for-ecr-replication-action
- Owner: siketyan
- License: mit
- Created: 2023-08-06T11:01:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-26T01:48:56.000Z (about 2 months ago)
- Last Synced: 2024-12-08T17:41:45.124Z (about 2 months ago)
- Topics: aws, continuous-deployment, ecr, github-action
- Language: TypeScript
- Homepage: https://github.com/marketplace/actions/wait-for-ecr-replication-action
- Size: 1.78 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wait for ECR Replication Action
Waits for ECR repository replications to be succeeded on GitHub Actions.
## Getting Started
### Using Repository URI
```yaml
- uses: siketyan/wait-for-ecr-replication-action@v1
with:
image_tag: latest
repository_uri: 0123456789.dkr.ecr.ap-northeast-1.amazonaws.com/my-image
```### Using Repository Name and Registry ID
```yaml
- uses: siketyan/wait-for-ecr-replication-action@v1
with:
image_tag: latest
repository_name: my-image
registry_id: 0123456789 # Optional
```