Skip to content

Commit 6152f7a

Browse files
authored
Updates (#13)
1 parent ca189bb commit 6152f7a

File tree

21 files changed

+198
-187
lines changed

21 files changed

+198
-187
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
docs/** linguist-documentation
2-
*.ps1 linguist-vendored

.github/ISSUE_TEMPLATE/0-bug.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: "⚠️ Report an Issue"
2+
description: "Please let us know if something is not right..."
3+
labels: ["bug"]
4+
assignees:
5+
- smashedr
6+
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
All issues will be responded too.
12+
13+
- type: textarea
14+
id: description
15+
validations:
16+
required: true
17+
attributes:
18+
label: Details
19+
description: Please describe the issue you are experiencing and how to reproduce.
20+
placeholder: Provide as many details as you can...
21+
22+
- type: textarea
23+
id: logs
24+
validations:
25+
required: false
26+
attributes:
27+
label: Log Output
28+
description: Paste any relevant logs or output in this box.
29+
placeholder: Output is automatically wrapped in a code block.
30+
render: shell
31+
32+
- type: markdown
33+
attributes:
34+
value: |
35+
Thank you for taking the time to make this report!
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "🚀 Request a Feature"
2+
description: "Request new features or enhancements"
3+
labels: ["enhancement"]
4+
assignees:
5+
- smashedr
6+
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
All requests will be responded too.
12+
13+
- type: textarea
14+
id: description
15+
validations:
16+
required: true
17+
attributes:
18+
label: Details
19+
description: Please describe the feature or enhancement you are requesting and what it should do.
20+
placeholder: Provide as many details as you can...
21+
22+
- type: markdown
23+
attributes:
24+
value: |
25+
Thank you for taking the time to make this report!

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: "❔ Start a Discussion"
4+
about: Ask a general question or start a discussion
5+
url: https://github.com/cssnr/vultr-python/discussions/new?category=q-a
6+
7+
- name: "💬 Join Discord"
8+
about: Chat with us about anything
9+
url: https://discord.gg/wXy6m2X8wY
10+
11+
- name: "📝 View Documentation"
12+
about: Review the documentation
13+
url: https://cssnr.github.io/vultr-python/

.github/actionlint.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
paths:
22
.github/workflows/**/*.{yml,yaml}:
33
ignore:
4+
- '"inputs" section is alias node but mapping node is expected'
45
- '"paths" section must be sequence node but got alias node with "" tag'
6+
- '"paths-ignore" section must be sequence node but got alias node with "" tag'

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
103103
- name: "Send Failure Notification"
104104
if: ${{ failure() }}
105-
uses: sarisia/actions-status-discord@b8381b25576cb341b2af39926ab42c5056cc44ed # v1.15.5
105+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
106106
with:
107107
webhook: ${{ secrets.DISCORD_WEBHOOK }}
108108
description: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696

9797
- name: "Send Failure Notification"
9898
if: ${{ failure() }}
99-
uses: sarisia/actions-status-discord@v1
99+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
100100
with:
101101
webhook: ${{ secrets.DISCORD_WEBHOOK }}
102102
description: ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }}

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
6666
- name: "astral-sh/ruff"
6767
if: ${{ !cancelled() }}
68-
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1
68+
uses: astral-sh/ruff-action@4919ec5cf1f49eff0871dbcea0da843445b837e6 # v3.6.1
6969
with:
7070
version: latest
7171

.github/workflows/pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: "Send Notification"
4141
if: ${{ !cancelled() }}
4242
continue-on-error: true
43-
uses: sarisia/actions-status-discord@v1
43+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
4444
with:
4545
webhook: ${{ secrets.DISCORD_WEBHOOK }}
4646
description: ${{ steps.deployment.outputs.page_url }}

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
7979
- name: "Send Notification"
8080
if: ${{ !cancelled() }}
81-
uses: sarisia/actions-status-discord@b8381b25576cb341b2af39926ab42c5056cc44ed # v1.15.5
81+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
8282
with:
8383
webhook: ${{ secrets.DISCORD_WEBHOOK }}
8484
description: |
@@ -125,7 +125,7 @@ jobs:
125125
126126
- name: "Send Failure Notification"
127127
if: ${{ failure() }}
128-
uses: sarisia/actions-status-discord@b8381b25576cb341b2af39926ab42c5056cc44ed # v1.15.5
128+
uses: sarisia/actions-status-discord@eb045afee445dc055c18d3d90bd0f244fd062708 # v1.16.0
129129
with:
130130
webhook: ${{ secrets.DISCORD_WEBHOOK }}
131131
description: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

0 commit comments

Comments
 (0)