Skip to content

Commit aa148ae

Browse files
new repo
1 parent 268bf8e commit aa148ae

Some content is hidden

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

61 files changed

+11183
-8659
lines changed

.dockerignore

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1-
.git/
1+
/coverage
2+
3+
# Dependency directories
24
node_modules/
5+
jspm_packages/
36

7+
# yarn v2
8+
.yarn/cache
9+
.yarn/unplugged
10+
.yarn/build-state.yml
11+
.yarn/install-state.gz
12+
.pnp.*

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# This file is for unifying the coding style for different editors and IDEs.
2+
# More information at http://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/dist/**
2+
/coverage/**
3+
/node_modules/**

.eslintrc.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"es6": true,
5+
"jest": true
6+
},
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/eslint-recommended",
10+
"plugin:@typescript-eslint/recommended",
11+
"plugin:jest/recommended",
12+
"plugin:prettier/recommended"
13+
],
14+
"parser": "@typescript-eslint/parser",
15+
"parserOptions": {
16+
"ecmaVersion": "latest",
17+
"sourceType": "module"
18+
},
19+
"plugins": [
20+
"@typescript-eslint",
21+
"jest",
22+
"prettier"
23+
]
24+
}

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.yarn/releases/** binary
2+
/.yarn/plugins/** binary
3+
/dist/** linguist-generated=true
4+
/lib/** linguist-generated=true

.github/CONTRIBUTING.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
## Contributing
2+
3+
Hi there! We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
4+
5+
Contributions to this project are [released](https://docs.github.com/en/github/site-policy/github-terms-of-service#6-contributions-under-repository-license)
6+
to the public under the [project's open source license](LICENSE).
7+
8+
## Submitting a pull request
9+
10+
1. [Fork](https://github.com/step-security/ghaction-setup-docker/fork) and clone the repository
11+
2. Configure and install the dependencies: `yarn install`
12+
3. Create a new branch: `git checkout -b my-branch-name`
13+
4. Make your changes
14+
5. Format code and build javascript artifacts: `docker buildx bake pre-checkin`
15+
6. Validate all code has correctly formatted and built: `docker buildx bake validate`
16+
7. Push to your fork and [submit a pull request](https://github.com/step-security/ghaction-setup-docker/compare)
17+
8. Pat your self on the back and wait for your pull request to be reviewed and merged.
18+
19+
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
20+
21+
- Make sure the `README.md` and any other relevant **documentation are kept up-to-date**.
22+
- We try to follow [SemVer v2.0.0](https://semver.org/). Randomly breaking public APIs is not an option.
23+
- Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as **separate pull requests**.
24+
- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
25+
26+
## Resources
27+
28+
- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
29+
- [Using Pull Requests](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests)
30+
- [GitHub Help](https://docs.github.com/en)
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
---
5+
6+
### Behaviour
7+
8+
#### Steps to reproduce this issue
9+
10+
1.
11+
2.
12+
3.
13+
14+
#### Expected behaviour
15+
16+
> Tell us what should happen
17+
18+
#### Actual behaviour
19+
20+
> Tell us what happens instead
21+
22+
### Configuration
23+
24+
* Repository URL (if public):
25+
* Build URL (if public):
26+
27+
```yml
28+
# paste your YAML workflow file here and remove sensitive data
29+
```
30+
31+
### Logs
32+
33+
> Download the [log file of your build](https://docs.github.com/en/actions/managing-workflow-runs/using-workflow-run-logs#downloading-logs)
34+
> and [attach it](https://docs.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests) to this issue.

.github/PULL_REQUEST_TEMPLATE/pull_request_template.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/SUPPORT.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Support [![](https://isitmaintained.com/badge/resolution/step-security/ghaction-setup-docker.svg)](https://isitmaintained.com/project/step-security/ghaction-setup-docker)
2+
3+
First, [be a good guy](https://github.com/kossnocorp/etiquette/blob/master/README.md).
4+
5+
## Reporting an issue
6+
7+
Please do a search in [open issues](https://github.com/step-security/ghaction-setup-docker/issues?utf8=%E2%9C%93&q=) to see if the issue or feature request has already been filed.
8+
9+
If you find your issue already exists, make relevant comments and add your [reaction](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments). Use a reaction in place of a "+1" comment.
10+
11+
:+1: - upvote
12+
13+
:-1: - downvote
14+
15+
If you cannot find an existing issue that describes your bug or feature, submit an issue using the guidelines below.
16+
17+
## Writing good bug reports and feature requests
18+
19+
File a single issue per problem and feature request.
20+
21+
* Do not enumerate multiple bugs or feature requests in the same issue.
22+
* Do not add your issue as a comment to an existing issue unless it's for the identical input. Many issues look similar, but have different causes.
23+
24+
The more information you can provide, the more likely someone will be successful reproducing the issue and finding a fix.
25+
26+
You are now ready to [create a new issue](https://github.com/step-security/ghaction-setup-docker/issues/new/choose)!
27+
28+
## Closure policy
29+
30+
* Issues that don't have the information requested above (when applicable) will be closed immediately and the poster directed to the support guidelines.
31+
* Issues that go a week without a response from original poster are subject to closure at our discretion.

.github/dependabot.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
version: 2
22
updates:
3-
# Maintain dependencies for GitHub Actions
43
- package-ecosystem: "github-actions"
54
directory: "/"
65
schedule:
76
interval: "daily"
8-
# Maintain dependencies for npm
7+
labels:
8+
- "dependencies"
9+
- "bot"
910
- package-ecosystem: "npm"
1011
directory: "/"
1112
schedule:
1213
interval: "daily"
13-
# Maintain dependencies for docker
14-
- package-ecosystem: "docker"
15-
directory: "/"
14+
allow:
15+
- dependency-type: "production"
16+
labels:
17+
- "dependencies"
18+
- "bot"
19+
20+
- package-ecosystem: docker
21+
directory: /test
1622
schedule:
17-
interval: "daily"
23+
interval: daily

0 commit comments

Comments
 (0)