Skip to content

Commit 1dfb880

Browse files
committed
chore: archive project — history cleared, redirecting to Codeberg
This repository has been archived. The project has moved to: https://codeberg.org/DavidJEddy/asdf-plugins
0 parents  commit 1dfb880

865 files changed

Lines changed: 2222 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
text=auto eol=lf

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Default owners for all the code in this repo
2+
* @asdf-vm/plugins
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Bug Report
2+
description: Create a report to help us improve
3+
labels: [bug]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Describe the Bug
13+
description: A clear and concise description of what the bug is.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: reproduction
18+
attributes:
19+
label: Steps to Reproduce
20+
description: Tell us what actions you performed before the issue occurred
21+
placeholder: |
22+
1. Go to '...'
23+
2. Click on '....'
24+
3. Scroll down to '....'
25+
4. See error
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: expected
30+
attributes:
31+
label: Expected Behaviour
32+
description: Tell us what should have happened?
33+
validations:
34+
required: true
35+
- type: textarea
36+
id: actual
37+
attributes:
38+
label: Actual Behaviour
39+
description: Tell us what happened instead
40+
validations:
41+
required: true
42+
- type: textarea
43+
id: environment
44+
attributes:
45+
label: Environment
46+
description: Copy the output of `asdf-info` here
47+
render: shell
48+
validations:
49+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Force users to use one of our predefined issue templates
2+
blank_issues_enabled: false
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
labels: []
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to write your suggestion!
9+
- type: textarea
10+
id: problem
11+
attributes:
12+
label: Is your feature request related to a problem? Please describe
13+
description: Please provide a clear and concise description the problem this feature would solve. The more information you can provide here, the better.
14+
placeholder: I'm always frustrated when...
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: solution
19+
attributes:
20+
label: Describe the proposed solution
21+
description: Please provide a clear and concise description of what you would like to happen.
22+
placeholder: I would like to see...
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: "Describe similar `asdf` features and why they are not sufficient"
29+
description: "Describe asdf features you tried to use to accomplish what you wanted. Explain why they are insufficient for the task you were trying to accomplish."
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: workarounds
34+
attributes:
35+
label: "Describe other workarounds you've considered"
36+
description: "A clear and concise description of any alternative solutions or features you've considered."
37+
validations:
38+
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Summary
2+
3+
Description:
4+
5+
- Tool repo URL:
6+
- Plugin repo URL:
7+
8+
## Checklist
9+
10+
- [ ] Format with `scripts/format.bash`
11+
- [ ] Test locally with `scripts/test_plugin.bash --file plugins/<your_new_plugin_name>`
12+
- [ ] Your plugin CI tests are green
13+
- _Tip: use the `plugin_test` action from [asdf-actions](https://github.com/asdf-vm/actions) in your plugin CI_
14+
15+
<!-- Thank you for contributing to asdf-plugins! -->

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "monthly"
8+
reviewers:
9+
- "jthegedus"

.github/workflows/lint.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: lint
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
markdown_and_scripts:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Install asdf dependencies
17+
uses: asdf-vm/actions/install@v3
18+
19+
- name: lint
20+
run: scripts/lint.bash
21+
22+
actions:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Checkout code
26+
uses: actions/checkout@v4
27+
28+
- name: Check workflow files
29+
uses: docker://rhysd/actionlint:1.6.23
30+
with:
31+
args: -color

.github/workflows/semantic-pr.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: lint
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
- edited
8+
- synchronize
9+
10+
jobs:
11+
semantic-pr:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: amannn/action-semantic-pull-request@v5.5.3
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)