remove github stuff that I didn't set up for my fork
This commit is contained in:
parent
eb0231f4ba
commit
33a650efda
6 changed files with 0 additions and 87 deletions
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
|
@ -1,6 +0,0 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
33
.github/workflows/docker-hub.yml
vendored
33
.github/workflows/docker-hub.yml
vendored
|
@ -1,33 +0,0 @@
|
|||
name: Publish on Docker Hub
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
docker-hub:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: docker/metadata-action@v4
|
||||
id: meta
|
||||
with:
|
||||
images: nim65s/matrix-webhook
|
||||
- uses: docker/setup-qemu-action@v2
|
||||
name: Set up QEMU
|
||||
- uses: docker/setup-buildx-action@v2
|
||||
name: Set up Docker Buildx
|
||||
- uses: docker/login-action@v2
|
||||
with:
|
||||
username: nim65s
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
platforms: linux/amd64,linux/arm64
|
12
.github/workflows/entrypoint.yml
vendored
12
.github/workflows/entrypoint.yml
vendored
|
@ -1,12 +0,0 @@
|
|||
name: Test entrypoints
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
- run: python -m pip install -U pip
|
||||
- run: python -m pip install .
|
||||
- run: matrix-webhook -h
|
||||
- run: python -m matrix_webhook -h
|
8
.github/workflows/lint.yml
vendored
8
.github/workflows/lint.yml
vendored
|
@ -1,8 +0,0 @@
|
|||
name: Lints
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: psf/black@stable
|
19
.github/workflows/release.yml
vendored
19
.github/workflows/release.yml
vendored
|
@ -1,19 +0,0 @@
|
|||
name: Release on GitHub & PyPI
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: pip install -U poetry twine wheel
|
||||
- run: poetry build
|
||||
- run: twine upload --non-interactive -u __token__ -p ${{ secrets.PYPI_TOKEN }} dist/*
|
||||
- run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
||||
- run: gh release create -t "Release ${{ env.TAG}}" -n "$(awk '/## \[${{ env.TAG }}] - /{flag=1;next}/## \[/{flag=0}flag' CHANGELOG.md)" ${{ env.TAG }} dist/*
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
|
@ -1,9 +0,0 @@
|
|||
name: Tests
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
tests:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: docker-compose -f test.yml up --exit-code-from tests
|
||||
- uses: codecov/codecov-action@v3
|
Loading…
Reference in a new issue