Skip to content

Commit dd764b9

Browse files
authored
Merge pull request #6 from wayofdev/feat/labels
2 parents 34f75d8 + 76a505b commit dd764b9

File tree

6 files changed

+61
-4
lines changed

6 files changed

+61
-4
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COMPOSE_PROJECT_NAME=ss
1111
# Can be left blank, but then $TLS_DOMAINS need to contain all top level domains
1212
# Example:
1313
# TLS_DOMAINS="pg-admin.docker router.docker ui.docker"
14-
SHARED_DOMAIN_SEGMENT=.wod
14+
SHARED_DOMAIN_SEGMENT=
1515

1616
# Specify domains, for mkcert
1717
# Because of browser limitations, every top level domain should be added separately

.github/labeler.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# this file is for the labeler workflow job
2+
# Documentation https://github.com/marketplace/actions/labeler
3+
4+
"type: documentation":
5+
- assets/**/*
6+
- .github/*
7+
- ./*.md
8+
9+
"type: maintenance":
10+
- .dependabot/*
11+
- .github/workflows/*
12+
- app/tests/**/*
13+
- tests/**/*

.github/workflows/label.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This workflow will triage pull requests and apply a label based on the
2+
# paths that are modified in the pull request.
3+
#
4+
# To use this workflow, you will need to set up a .github/labeler.yml
5+
# file with configuration. For more information, see:
6+
# https://github.com/actions/labeler/blob/master/README.md
7+
8+
on: # yamllint disable-line rule:truthy
9+
pull_request:
10+
11+
jobs:
12+
label:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Apply labels
16+
uses: actions/labeler@v2
17+
with:
18+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/shellcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- name: Repository checkout
17-
uses: actions/checkout@v3
16+
- name: Checkout
17+
uses: actions/checkout@v3.1.0
1818
with:
1919
fetch-depth: 0
2020

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
3+
name: Sync changes from upstream template
4+
5+
on:
6+
# Trigger At 00:00 on each 1st day of month
7+
schedule:
8+
- cron: "0 0 1 * *"
9+
# Manual trigger
10+
workflow_dispatch:
11+
12+
jobs:
13+
repo-sync:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v3.1.0
19+
20+
- name: Sync changes from upstream template
21+
uses: AndreasAugustin/actions-template-sync@v0.4.2-draft
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
24+
source_repo_path: wayofdev/docker-shared-services
25+
upstream_branch: master
26+
pr_labels: "type: maintenance"

traefik/conf/traefik.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
providers:
44
docker:
55
exposedByDefault: false
6-
network: ss_shared_network
6+
network: ss_network
77
file:
88
directory: /etc/traefik
99
watch: true

0 commit comments

Comments
 (0)