Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/urcomputeringpal/pulumi-preview-pr-label-action
Decorate your PR with context from Pulumi Preview output.
https://github.com/urcomputeringpal/pulumi-preview-pr-label-action
ci github-actions infrastructure-as-code pulumi
Last synced: about 1 month ago
JSON representation
Decorate your PR with context from Pulumi Preview output.
- Host: GitHub
- URL: https://github.com/urcomputeringpal/pulumi-preview-pr-label-action
- Owner: urcomputeringpal
- License: mit
- Created: 2023-06-17T14:22:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-11T12:07:40.000Z (about 2 months ago)
- Last Synced: 2024-12-11T13:21:34.379Z (about 2 months ago)
- Topics: ci, github-actions, infrastructure-as-code, pulumi
- Language: TypeScript
- Homepage:
- Size: 563 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Pulumi Preview PR Label Action
Decorate your PR with context from Pulumi Preview output.
See [./action.yml](./action.yml) for the full documentation for this action's inputs and outputs.
## Example
The following example demonstrates how to use this with [pulumi/actions](https://github.com/pulumi/actions):
```yaml
name: pulumi-preview
on: [pull_request]
jobs:
preview:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
pull-requests: write
steps:
- uses: actions/checkout@v2
- uses: pulumi/actions@v4
id: pulumi-preview
with:
work-dir: pulumi
command: preview
- uses: urcomputeringpal/pulumi-preview-pr-label-action@v0
with:
label-prefix: Production
pulumi-output: ${{ steps.pulumi-preview.outputs.output }}
```