mirror of
https://github.com/AuxXxilium/synology-wireguard.git
synced 2024-11-23 15:01:05 +07:00
update github config
This commit is contained in:
parent
ebf96ffeae
commit
df5a8cafb0
16
.github/dependabot.yml
vendored
Normal file
16
.github/dependabot.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: github-actions
|
||||
directory: /
|
||||
schedule:
|
||||
interval: weekly
|
||||
day: monday
|
||||
time: "09:00"
|
||||
commit-message:
|
||||
prefix: fix
|
||||
prefix-development: chore
|
||||
include: scope
|
||||
labels:
|
||||
- gha
|
||||
- dependencies
|
26
.github/stale.yml
vendored
Normal file
26
.github/stale.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
# Configuration for probot-stale - https://github.com/probot/stale
|
||||
|
||||
# Number of days of inactivity before an issue becomes stale
|
||||
daysUntilStale: 120
|
||||
|
||||
# Number of days of inactivity before a stale issue is closed
|
||||
daysUntilClose: 14
|
||||
|
||||
# Issues with these labels will never be considered stale
|
||||
exemptLabels:
|
||||
- enhancement
|
||||
- pinned
|
||||
- security
|
||||
|
||||
# Label to use when marking an issue as stale
|
||||
staleLabel: wontfix
|
||||
|
||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||
markComment: >
|
||||
This issue has been automatically marked as stale because it has not had
|
||||
recent activity. It will be closed in 7 days if no further activity occurs.
|
||||
If the issue is still valid, please add a respective comment to prevent this
|
||||
issue from being closed automatically. Thank you for your contributions.
|
||||
|
||||
# Comment to post when closing a stale issue. Set to `false` to disable
|
||||
closeComment: false
|
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
@ -1,20 +1,31 @@
|
||||
# Copyright (C) 2022 Vegard IT GmbH
|
||||
# SPDX-License-Identifier: MIT
|
||||
# SPDX-FileCopyrightText: © Vegard IT GmbH (https://vegardit.com) and contributors
|
||||
# SPDX-FileContributor: Sebastian Thomschke, Vegard IT GmbH
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
branches: # build all branches
|
||||
- '**'
|
||||
tags-ignore:
|
||||
tags-ignore: # but don't build tags
|
||||
- '**'
|
||||
paths-ignore:
|
||||
- '**/*.adoc'
|
||||
- '**/*.md'
|
||||
- '.editorconfig'
|
||||
- '.git*'
|
||||
- '**/*.rst'
|
||||
- '.github/*.yml'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '**/*.adoc'
|
||||
- '**/*.md'
|
||||
- '.editorconfig'
|
||||
- '.git*'
|
||||
- '**/*.rst'
|
||||
- '.github/*.yml'
|
||||
workflow_dispatch:
|
||||
# https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/
|
||||
inputs:
|
||||
@ -80,6 +91,7 @@ jobs:
|
||||
docker build -t synobuild .
|
||||
|
||||
- uses: actions/cache@v3
|
||||
if: github.ref_name == 'master'
|
||||
with:
|
||||
path: toolkit_tarballs/ds.*
|
||||
key: synology_toolkit_tarballs_DSM${{ env.DSM_VERSION }}_${{ matrix.PACKAGE_ARCH }}
|
||||
@ -201,6 +213,10 @@ jobs:
|
||||
# https://hub.github.com/hub-release.1.html
|
||||
hub release create "${release_name}" \
|
||||
--message "${release_name}" \
|
||||
--message "**Use at your own risk. We are not responsible if this breaks your NAS. Realistically it should not result in data loss, but it could render your NAS inaccessible if something goes wrong.**" \
|
||||
--message "" \
|
||||
--message "**Especially if you are not comfortable with removing the hard drives from your NAS and manually recovering the data, this is not for you.**" \
|
||||
--message "" \
|
||||
--message "See https://kb.synology.com/en-uk/DSM/tutorial/What_kind_of_CPU_does_my_NAS_have to find the right architecture of your NAS" \
|
||||
${spks[@]/#/--attach }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user