Skip to content

Commit aafa972

Browse files
committed
first commit
0 parents  commit aafa972

13 files changed

Lines changed: 1175 additions & 0 deletions

File tree

.github/CODEOWNERS

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

.github/auto-merge.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Configuration for probot-auto-merge - https://github.com/bobvanderlinden/probot-auto-merge
2+
3+
updateBranch: true
4+
deleteBranchAfterMerge: true
5+
reportStatus: true
6+
7+
minApprovals:
8+
COLLABORATOR: 0
9+
maxRequestedChanges:
10+
NONE: 0
11+
blockingLabels:
12+
- blocked
13+
14+
# Will merge whenever the above conditions are met, but also
15+
# the owner has approved or merge label was added.
16+
rules:
17+
- minApprovals:
18+
OWNER: 1
19+
- requiredLabels:
20+
- merge

.github/stale.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 60
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+
- pinned
8+
- security
9+
# Label to use when marking an issue as stale
10+
staleLabel: wontfix
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs. Thank you
15+
for your contributions.
16+
# Comment to post when closing a stale issue. Set to `false` to disable
17+
closeComment: false

.github/workflows/tag.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Build-Push
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v1
15+
with:
16+
fetch-depth: 1
17+
18+
- name: Docker Build & Push to Docker Hub
19+
uses: timurgaleev/act-build@master
20+
with:
21+
args: --docker
22+
env:
23+
USERNAME: ${{ secrets.DOCKER_USERNAME }}
24+
PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
25+
TAG_NAME: ${{ github.ref }}
26+
LATEST: "true"
27+
28+
- name: Docker Build & Push to GitHub Package
29+
uses: timurgaleev/act-build@master
30+
with:
31+
args: --docker
32+
env:
33+
USERNAME: ${{ secrets.GITHUB_USERNAME }}
34+
PASSWORD: ${{ secrets.GH_PERSONAL_TOKEN }}
35+
REGISTRY: "docker.pkg.github.com"
36+
TAG_NAME: ${{ github.ref }}

.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Windows image file caches
2+
Thumbs.db
3+
ehthumbs.db
4+
5+
# Folder config file
6+
Desktop.ini
7+
8+
# Recycle Bin used on file shares
9+
$RECYCLE.BIN/
10+
11+
# Windows shortcuts
12+
*.lnk
13+
14+
# Mac
15+
.DS_Store
16+
17+
# Maven
18+
target/
19+
build/
20+
21+
# JetBrains
22+
.idea/
23+
*.iml
24+
25+
# Eclipse
26+
.settings/
27+
.metadata/
28+
.project

.mergify.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
pull_request_rules:
2+
- name: automatic merge
3+
conditions:
4+
- base=master
5+
- "#approved-reviews-by>=1"
6+
# - "status-success=ci/circleci"
7+
actions:
8+
merge:
9+
method: merge
10+
# method: rebase
11+
# rebase_fallback: merge
12+
# strict: smart
13+
dismiss_reviews: {}
14+
delete_head_branch: {}

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM timurgaleev/build-image
2+
3+
LABEL "com.github.actions.name"="Action Docker Push"
4+
LABEL "com.github.actions.description"="build, tag and push container"
5+
LABEL "com.github.actions.icon"="anchor"
6+
LABEL "com.github.actions.color"="blue"
7+
8+
LABEL version=v0.1.0
9+
LABEL repository="https://github.com/timurgaleev/act-docker"
10+
LABEL maintainer="Timur Galeev <timur_galeev@outlook.com>"
11+
12+
ADD entrypoint.sh /entrypoint.sh
13+
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)