File tree Expand file tree Collapse file tree 6 files changed +61
-4
lines changed
Expand file tree Collapse file tree 6 files changed +61
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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/**/*
Original file line number Diff line number Diff line change 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 }}"
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 33providers :
44 docker :
55 exposedByDefault : false
6- network : ss_shared_network
6+ network : ss_network
77 file :
88 directory : /etc/traefik
99 watch : true
You can’t perform that action at this time.
0 commit comments