Skip to content

Commit 583bc2f

Browse files
Bot Updating Templated Files
1 parent 1a59459 commit 583bc2f

File tree

5 files changed

+34
-3
lines changed

5 files changed

+34
-3
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Issue & PR Tracker
2+
3+
on:
4+
issues:
5+
types: [opened,reopened,labeled,unlabeled]
6+
pull_request_target:
7+
types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled]
8+
9+
jobs:
10+
manage-project:
11+
permissions:
12+
issues: write
13+
uses: linuxserver/github-workflows/.github/workflows/issue-pr-tracker.yml@v1
14+
secrets: inherit
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Mark stale issues and pull requests
2+
on:
3+
schedule:
4+
- cron: '29 17 * * *'
5+
workflow_dispatch:
6+
7+
jobs:
8+
stale:
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
uses: linuxserver/github-workflows/.github/workflows/issues-cron.yml@v1
13+
secrets: inherit

.github/workflows/package_trigger_scheduler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Package Trigger Scheduler
22

33
on:
44
schedule:
5-
- cron: '32 14 * * 4'
5+
- cron: '18 3 * * 0'
66
workflow_dispatch:
77

88
jobs:

.github/workflows/permissions.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name: Permission check
22
on:
3-
pull_request:
3+
pull_request_target:
44
paths:
55
- '**/run'
66
- '**/finish'
7+
- '**/check'
78
jobs:
89
permission_check:
910
uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ The container can be run locally, but it is meant to be integrated into the Linu
3333
```
3434
sudo docker run --rm -i \
3535
-v /var/run/docker.sock:/var/run/docker.sock \
36+
-v /host/path:/ci/output:rw `#Optional, will contain all the files the container creates.` \
3637
-e IMAGE="linuxserver/<dockerimage>" \
3738
-e TAGS="<single tag or array seperated by |>" \
3839
-e META_TAG=<manifest main dockerhub tag> \
@@ -49,7 +50,9 @@ sudo docker run --rm -i \
4950
-e DELAY_START=<optional, time in seconds to delay before taking screenshot. Defaults to '5'> \
5051
-e PORT=<optional, port web application listens on internal docker port. Defaults to '80'> \
5152
-e SSL=<optional , use ssl for the screenshot true/false. Defaults to 'false'> \
52-
-e CI_S6_VERBOSITY=<optional, Updates the S6_VERBOSITY env. Defaults to '2'>
53+
-e CI_S6_VERBOSITY=<optional, Updates the S6_VERBOSITY env. Defaults to '2'> \
54+
-e DOCKER_LOGS_DELAY=<optional, How long to wait in seconds while tailing the container logs. Defaults to '300'> \
55+
-e DRY_RUN=<optional, Set to 'true' when you don't want to upload files to S3 when testing>
5356
-t lsiodev/ci:latest \
5457
python3 test_build.py
5558
```

0 commit comments

Comments
 (0)