Skip to content

Commit e9dc12e

Browse files
committed
Initial version
0 parents  commit e9dc12e

23 files changed

Lines changed: 1323 additions & 0 deletions

.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

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist/** linguist-generated=true
2+
/lib/** linguist-generated=true

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @crazy-max

.github/CONTRIBUTING.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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://help.github.com/articles/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/crazy-max/ghaction-github-runtime/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/crazy-max/ghaction-github-runtime/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+
- Write tests.
22+
- Make sure the `README.md` and any other relevant **documentation are kept up-to-date**.
23+
- We try to follow [SemVer v2.0.0](https://semver.org/). Randomly breaking public APIs is not an option.
24+
- 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**.
25+
- Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
26+
27+
## Resources
28+
29+
- [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
30+
- [Using Pull Requests](https://help.github.com/articles/about-pull-requests/)
31+
- [GitHub Help](https://help.github.com)

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: crazy-max
2+
custom: https://www.paypal.me/crazyws
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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 me what should happen
17+
18+
#### Actual behaviour
19+
20+
> Tell me 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://help.github.com/en/actions/configuring-and-managing-workflows/managing-a-workflow-run#downloading-logs)
34+
> and [attach it](https://help.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests)
35+
> to this issue.

.github/SUPPORT.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Support [![](https://isitmaintained.com/badge/resolution/crazy-max/ghaction-github-runtime.svg)](https://isitmaintained.com/project/crazy-max/ghaction-github-runtime)
2+
3+
## Reporting an issue
4+
5+
Please do a search in [open issues](https://github.com/crazy-max/ghaction-github-runtime/issues?utf8=%E2%9C%93&q=) to see if the issue or feature request has already been filed.
6+
7+
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.
8+
9+
:+1: - upvote
10+
11+
:-1: - downvote
12+
13+
If you cannot find an existing issue that describes your bug or feature, submit an issue using the guidelines below.
14+
15+
## Writing good bug reports and feature requests
16+
17+
File a single issue per problem and feature request.
18+
19+
* Do not enumerate multiple bugs or feature requests in the same issue.
20+
* 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.
21+
22+
The more information you can provide, the more likely someone will be successful reproducing the issue and finding a fix.
23+
24+
You are now ready to [create a new issue](https://github.com/crazy-max/ghaction-github-runtime/issues/new/choose)!
25+
26+
## Closure policy
27+
28+
* Issues that don't have the information requested above (when applicable) will be closed immediately and the poster directed to the support guidelines.
29+
* Issues that go a week without a response from original poster are subject to closure at my discretion.

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
time: "06:00"
8+
timezone: "Europe/Paris"
9+
labels:
10+
- ":game_die: dependencies"
11+
- ":robot: bot"
12+
- package-ecosystem: "npm"
13+
directory: "/"
14+
schedule:
15+
interval: "daily"
16+
time: "06:00"
17+
timezone: "Europe/Paris"
18+
allow:
19+
- dependency-type: "production"
20+
labels:
21+
- ":game_die: dependencies"
22+
- ":robot: bot"

.github/stale.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 30
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- ":hand: hold"
8+
# Set to true to ignore issues in a milestone (defaults to false)
9+
exemptMilestones: true
10+
# Label to use when marking an issue as stale
11+
staleLabel: ":skull: stale"
12+
# Comment to post when marking an issue as stale. Set to `false` to disable
13+
markComment: >
14+
This issue has been automatically marked as stale because it has not had
15+
recent activity. It will be closed if no further activity occurs. Thank you
16+
for your contributions.
17+
# Comment to post when closing a stale issue. Set to `false` to disable
18+
closeComment: false

.gitignore

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/.dev
2+
node_modules/
3+
lib
4+
5+
# Jetbrains
6+
/.idea
7+
/*.iml
8+
9+
# Rest of the file pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
10+
# Logs
11+
logs
12+
*.log
13+
npm-debug.log*
14+
yarn-debug.log*
15+
yarn-error.log*
16+
lerna-debug.log*
17+
18+
# Diagnostic reports (https://nodejs.org/api/report.html)
19+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
20+
21+
# Runtime data
22+
pids
23+
*.pid
24+
*.seed
25+
*.pid.lock
26+
27+
# Directory for instrumented libs generated by jscoverage/JSCover
28+
lib-cov
29+
30+
# Coverage directory used by tools like istanbul
31+
coverage
32+
*.lcov
33+
34+
# nyc test coverage
35+
.nyc_output
36+
37+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
38+
.grunt
39+
40+
# Bower dependency directory (https://bower.io/)
41+
bower_components
42+
43+
# node-waf configuration
44+
.lock-wscript
45+
46+
# Compiled binary addons (https://nodejs.org/api/addons.html)
47+
build/Release
48+
49+
# Dependency directories
50+
jspm_packages/
51+
52+
# TypeScript v1 declaration files
53+
typings/
54+
55+
# TypeScript cache
56+
*.tsbuildinfo
57+
58+
# Optional npm cache directory
59+
.npm
60+
61+
# Optional eslint cache
62+
.eslintcache
63+
64+
# Optional REPL history
65+
.node_repl_history
66+
67+
# Output of 'npm pack'
68+
*.tgz
69+
70+
# Yarn Integrity file
71+
.yarn-integrity
72+
73+
# dotenv environment variables file
74+
.env
75+
.env.test
76+
77+
# parcel-bundler cache (https://parceljs.org/)
78+
.cache
79+
80+
# next.js build output
81+
.next
82+
83+
# nuxt.js build output
84+
.nuxt
85+
86+
# vuepress build output
87+
.vuepress/dist
88+
89+
# Serverless directories
90+
.serverless/
91+
92+
# FuseBox cache
93+
.fusebox/
94+
95+
# DynamoDB Local files
96+
.dynamodb/

0 commit comments

Comments
 (0)