Skip to content

Commit e694680

Browse files
committed
Initialize project
0 parents  commit e694680

File tree

15 files changed

+832
-0
lines changed

15 files changed

+832
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
name: Bug Report
3+
about: Create a bug report to help us improve the action.
4+
5+
---
6+
7+
**Describe the bug**
8+
9+
> Please provide a clear and concise description of what the bug is.
10+
11+
**Reproduce**
12+
13+
> Steps to reproduce the behavior.
14+
15+
16+
**Expected behavior**
17+
18+
> Please provide a clear and concise description of what you expected to happen.
19+
20+
**Screenshots**
21+
22+
> If applicable, add screenshots to help explain your problem.
23+
24+
25+
**Additional Comments**
26+
27+
> Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature Request
3+
about: If you'd like to make a suggestion please fill out the form below.
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
9+
> Please provide a clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
10+
11+
**Describe the solution you'd like**
12+
13+
> Please provide a clear and concise description of what you want to happen.
14+
15+
**Additional Comments**
16+
17+
> Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
**Description**
2+
> Provide a description of what your changes do.
3+
4+
**Testing Instructions**
5+
> Give us step by step instructions on how to test your changes.
6+
7+
**Additional Notes**
8+
> Anything else that will help us test the pull request.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Auto release github actions
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
actions-tagger:
9+
runs-on: windows-latest
10+
steps:
11+
- uses: Actions-R-Us/actions-tagger@latest
12+
with:
13+
publish_latest: true
14+
env:
15+
GITHUB_TOKEN: '${{secrets.GITHUB_TOKEN}}'

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# .DS_Store
2+
.DS_Store

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [0.0.1]() (2020-02-10)
6+
7+
- **Added**
8+
- Initialize project

CONTRIBUTING.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Contributing
2+
3+
When contributing to this repository, please first discuss the change you wish to make via issue,
4+
email, or any other method with the owners of this repository before making a change.
5+
6+
## Pull Request Best Practices
7+
8+
1. Ensure that you've tested your feature/change yourself. As the primary focus of this project is deployment, providing a link to a deployed repository using your branch is preferred. You can reference the forked action using your GitHub username, for example `yourname/github-pages-deplpy-action@master`.
9+
2. Make sure you update the README if you've made a change that requires documentation.
10+
3. When making a pull request, highlight any areas that may cause a breaking change so the maintainer can update the version number accordingly on the GitHub marketplace.

Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM node:10.14.2-alpine as base
2+
3+
LABEL "com.github.actions.name"="Vuepress deploy"
4+
LABEL "com.github.actions.description"="A GitHub Action to build and deploy Vuepress sites to GitHub Pages"
5+
LABEL "com.github.actions.icon"="upload-cloud"
6+
LABEL "com.github.actions.color"="gray-dark"
7+
8+
LABEL "repository"="https://github.com/jenkey2011/vuepress-deploy"
9+
LABEL "homepage"="https://github.com/jenkey2011/vuepress-deploy"
10+
LABEL "maintainer"="Jenkey2011 <jenkey2011@163.com>"
11+
12+
RUN apk add --no-cache git jq
13+
14+
COPY entrypoint.sh /entrypoint.sh
15+
ENTRYPOINT ["/entrypoint.sh"]

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Jenkey2011
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)