disable github pipes

This commit is contained in:
2025-03-25 02:56:14 +01:00
parent ef0c504e00
commit 15b922acca
6 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
name: Add or update provider
about: Request for a new provider or update configs for an existing provider.
title: ''
labels: provider
assignees: ''
---
**Which provider?**
<!-- Name the provider you want updated -->
**Where are the configs?**
<!-- Most providers supply a .zip file containing all configs and certificates. Please provide a link to the .ovpn config bundle -->

View File

@@ -0,0 +1,28 @@
---
name: Bug report
about: Container is not behaving as expected
title: ''
labels: ''
assignees: ''
---
<!--
Thanks for filing an issue! Before hitting the button, please answer these questions. It's helpful to search the existing GitHub issues first. It's likely that another user has already reported the issue you're facing, or it's a known issue that we're already aware of.
Also. If you don't suspect that there are any issues with the image itself, but that you have issues configuring it - please read the README twice and try the gitter chat before posting here.
-->
**Describe the problem**
<!-- A clear and concise description of what the bug is. -->
**Add your docker run command**
<!-- To understand how your container is running, provide the docker run command or the docker-compose.yml file you used to start it. If you're using a GUI to set up the container then provide screenshots or a list of options and settings. -->
**Logs**
<!-- Provide all logs from the container. By default the should not be any sensitive information there, but if there is then mask it with *** or something similar.
You can get the logs by running "docker logs <container-name>". -->
**Host system:**
<!-- Are you running on Ubuntu, a NAS, Raspberry Pi, Mac OS or something else?
Which version of Docker are you using? -->

View File

@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
**Describe the solution you'd like**
<!-- A clear and concise description of what you want to happen. -->
**Describe alternatives you've considered**
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
**Additional context**
<!-- Add any other context or screenshots about the feature request here. -->

58
_.github/workflows/ci.yml Normal file
View File

@@ -0,0 +1,58 @@
name: Build/Push (master)
on:
push:
branches:
- 'master'
pull_request:
branches:
- '*'
jobs:
changes:
runs-on: ubuntu-latest
outputs:
docker: ${{ steps.filter.outputs.docker }}
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
token: ${{ secrets.GITHUB_TOKEN }}
filters: |
docker:
- 'Dockerfile'
- 'root/'
build-docker:
runs-on: ubuntu-latest
needs: changes
if: |
(needs.changes.outputs.docker == 'true')
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push docker image
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/arm64,linux/amd64
push: true
tags: ebrianne/docker-deluge-openvpn:latest

View File

@@ -0,0 +1,19 @@
name: 'Stale issue handler'
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
stale-issue-message: 'This issue has been automatically marked as stale after 30d because it has not had
recent activity. It will be closed in 5d if no further activity occurs. Thank you for your contributions.'
days-before-stale: 30
days-before-close: 5
stale-issue-label: 'stale'
exempt-issue-labels: 'pinned,security,block'

View File

@@ -0,0 +1,39 @@
name: Build/Push (tag)
on:
push:
tags:
- '*'
jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Get the version
id: get_version
run: echo ::set-output name=TAG_NAME::${GITHUB_REF/refs\/tags\//}
- name: Build and push docker image
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/arm64,linux/amd64
push: true
tags: ebrianne/docker-deluge-openvpn:${{ steps.get_version.outputs.TAG_NAME }}