Skip to content

Commit 152a5bc

Browse files
authored
Update GitHub Actions workflows. (#793)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit f8a8cea589239aee5042b9d6463d4ae183d26b96.
1 parent e173e3d commit 152a5bc

File tree

4 files changed

+74
-3
lines changed

4 files changed

+74
-3
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: Bug Report
2+
description: Report something that's not working correctly
3+
labels: ["kind/bug", "needs-triage"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
You can also ask questions on our [Community Slack](https://slack.pulumi.com/).
10+
- type: textarea
11+
id: what-happened
12+
attributes:
13+
label: Describe what happened
14+
description: Please summarize what happened, including what Pulumi commands you ran, as well as
15+
an inline snippet of any relevant error or console output.
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: sample-program
20+
attributes:
21+
label: Sample program
22+
description: |
23+
<details><summary>Provide a reproducible sample program</summary>
24+
If this is a bug you encountered while running a Pulumi command, please provide us with a minimal,
25+
self-contained Pulumi program that reproduces this behavior so that we can investigate on our end.
26+
Without a functional reproduction, we will not be able to prioritize this bug.
27+
**Note:** If the program output is more than a few lines, please send us a Gist or a link to a file.
28+
</details>
29+
validations:
30+
required: true
31+
- type: textarea
32+
id: log-output
33+
attributes:
34+
label: Log output
35+
description: |
36+
<details><summary>How to Submit Logs</summary>
37+
If this is something that is dependent on your environment, please also provide us with the output of
38+
`pulumi up --logtostderr --logflow -v=10` from the root of your project.
39+
We may also ask you to supply us with debug output following [these steps](https://www.pulumi.com/docs/using-pulumi/pulumi-packages/debugging-provider-packages/).
40+
**Note:** If the log output is more than a few lines, please send us a Gist or a link to a file.
41+
</details>
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: resources
46+
attributes:
47+
label: Affected Resource(s)
48+
description: Please list the affected Pulumi Resource(s) or Function(s).
49+
validations:
50+
required: false
51+
- type: textarea
52+
id: versions
53+
attributes:
54+
label: Output of `pulumi about`
55+
description: Provide the output of `pulumi about` from the root of your project.
56+
validations:
57+
required: true
58+
- type: textarea
59+
id: ctx
60+
attributes:
61+
label: Additional context
62+
description: Anything else you would like to add?
63+
validations:
64+
required: false
65+
- type: textarea
66+
id: voting
67+
attributes:
68+
label: Contributing
69+
value: |
70+
Vote on this issue by adding a 👍 reaction.
71+
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ jobs:
353353
- id: version
354354
uses: pulumi/provider-version-action@v1
355355
- name: Publish SDKs
356-
uses: pulumi/pulumi-package-publisher@v0.0.15
356+
uses: pulumi/pulumi-package-publisher@v0.0.16
357357
with:
358358
sdk: all
359359
version: ${{ steps.version.outputs.version }}

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ jobs:
300300
- id: version
301301
uses: pulumi/provider-version-action@v1
302302
- name: Publish SDKs
303-
uses: pulumi/pulumi-package-publisher@v0.0.15
303+
uses: pulumi/pulumi-package-publisher@v0.0.16
304304
with:
305305
sdk: all
306306
version: ${{ steps.version.outputs.version }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ jobs:
313313
- id: version
314314
uses: pulumi/provider-version-action@v1
315315
- name: Publish SDKs
316-
uses: pulumi/pulumi-package-publisher@v0.0.15
316+
uses: pulumi/pulumi-package-publisher@v0.0.16
317317
with:
318318
sdk: all
319319
version: ${{ steps.version.outputs.version }}

0 commit comments

Comments
 (0)