Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge pull request #57 from illallangi/repo-sync/github/default #58

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
39cd5e7
🔄 synced local '.' with remote 'templates/docker/'
andrewcole Dec 28, 2023
f7cb821
Merge pull request #50 from illallangi/repo-sync/github/default
github-actions[bot] Dec 28, 2023
815405c
🔄 synced local '.' with remote 'templates/docker/'
andrewcole Dec 28, 2023
534b6f0
Merge pull request #51 from illallangi/repo-sync/github/default
github-actions[bot] Dec 28, 2023
a7414cd
🔄 synced local '.' with remote 'templates/docker/'
andrewcole Dec 28, 2023
8408661
Merge pull request #52 from illallangi/repo-sync/github/default
github-actions[bot] Dec 28, 2023
dc9f983
🔄 synced local '.' with remote 'templates/docker/'
andrewcole Dec 28, 2023
cfc26c3
Merge pull request #54 from illallangi/repo-sync/github/default
github-actions[bot] Dec 28, 2023
8ec0281
🔄 synced local '.' with remote 'templates/common/'
andrewcole Dec 28, 2023
c6e1147
Merge pull request #55 from illallangi/repo-sync/github/default
github-actions[bot] Dec 28, 2023
c7282fa
🔄 synced local '.' with remote 'templates/docker/'
andrewcole Dec 28, 2023
7ba298b
Merge pull request #56 from illallangi/repo-sync/github/default
andrewcole Dec 28, 2023
067399d
🔄 synced local '.' with remote 'templates/docker/'
andrewcole Dec 28, 2023
3182158
Merge pull request #57 from illallangi/repo-sync/github/default
andrewcole Dec 28, 2023
41da5eb
🔄 synced local '.' with remote 'templates/docker/'
andrewcole Dec 28, 2023
347724b
Merge pull request #59 from illallangi/repo-sync/github/default
andrewcole Dec 28, 2023
2104f3d
🔄 synced local '.' with remote 'templates/docker/'
andrewcole Dec 28, 2023
a75b97d
Merge pull request #60 from illallangi/repo-sync/github/default
andrewcole Dec 28, 2023
e3d9321
🔄 synced local '.' with remote 'templates/docker/'
andrewcole Dec 28, 2023
0a16e99
Merge pull request #61 from illallangi/repo-sync/github/default
andrewcole Dec 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,26 @@ updates:
- assignees:
- andrewcole
directory: /
labels:
- automerge
open-pull-requests-limit: 10
package-ecosystem: docker
schedule:
interval: daily
- assignees:
- andrewcole
directory: /
labels:
- automerge
open-pull-requests-limit: 10
package-ecosystem: github-actions
schedule:
interval: daily
- assignees:
- andrewcole
directory: /
labels:
- automerge
open-pull-requests-limit: 10
package-ecosystem: pip
schedule:
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/auto-create-pull-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
jobs:
pull-request:
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
- env:
DRY_RUN: true
GITHUB_TOKEN: ${{ secrets.PAT }}
WITH_V: true
id: version
name: Bump version and push tag
uses: anothrNick/[email protected]
- name: pull-request
uses: diillson/[email protected]
with:
destination_branch: master
github_token: ${{ secrets.PAT }}
pr_assignee: andrewcole
pr_label: release
name: Automatically Create Pull Request
on:
push:
branches:
- development
35 changes: 35 additions & 0 deletions .github/workflows/auto-merge-pull-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
jobs:
automerge:
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- env:
GITHUB_TOKEN: ${{ secrets.PAT }}
MERGE_DELETE_BRANCH: "true"
MERGE_FORKS: "false"
MERGE_RETRIES: "720"
id: automerge
name: Auto Merge
uses: pascalgn/[email protected]
name: Automatically Merge Pull Requests
on:
check_suite:
types:
- completed
pull_request:
types:
- labeled
- unlabeled
- synchronize
- opened
- edited
- ready_for_review
- reopened
- unlocked
pull_request_review:
types:
- submitted
status: {}
43 changes: 43 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
jobs:
lint-actions: # https://github.com/reviewdog/action-actionlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1
with:
fail_on_error: "true"
filter_mode: nofilter
- uses: reviewdog/action-suggester@v1
lint-dockerfile: # https://github.com/reviewdog/action-hadolint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-hadolint@v1
with:
fail_on_error: "true"
filter_mode: nofilter
- uses: reviewdog/action-suggester@v1
lint-spelling: # https://github.com/reviewdog/action-misspell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-misspell@v1
with:
exclude: |
*/*.min.css
*/*.svg
fail_on_error: "true"
filter_mode: nofilter
- uses: reviewdog/action-suggester@v1
lint-yaml: # https://github.com/reviewdog/action-yamllint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-yamllint@v1
with:
fail_on_error: "true"
filter_mode: nofilter
- uses: reviewdog/action-suggester@v1
name: Lint
on: pull_request
10 changes: 6 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
---
jobs:
release:
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
- env:
DEFAULT_BUMP: patch
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PAT }}
WITH_V: true
id: version
name: Bump version and push tag
Expand All @@ -27,7 +29,7 @@ jobs:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.PAT }}
registry: ghcr.io
username: ${{ github.repository_owner }}
- name: Build and push
Expand All @@ -42,7 +44,7 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
- env:
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PAT }}
name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down
50 changes: 9 additions & 41 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,45 +1,9 @@
---
jobs:
lint-actions: # https://github.com/reviewdog/action-actionlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1
with:
fail_on_error: "true"
filter_mode: nofilter
- uses: reviewdog/action-suggester@v1
lint-dockerfile: # https://github.com/reviewdog/action-hadolint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-hadolint@v1
with:
fail_on_error: "true"
filter_mode: nofilter
- uses: reviewdog/action-suggester@v1
lint-spelling: # https://github.com/reviewdog/action-misspell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-misspell@v1
with:
exclude: |
*/*.min.css
*/*.svg
fail_on_error: "true"
filter_mode: nofilter
- uses: reviewdog/action-suggester@v1
lint-yaml: # https://github.com/reviewdog/action-yamllint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-yamllint@v1
with:
fail_on_error: "true"
filter_mode: nofilter
- uses: reviewdog/action-suggester@v1
test:
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -57,5 +21,9 @@ jobs:
context: .
platforms: linux/amd64,linux/arm64
push: false
name: Test
on: pull_request
name: Test Development Build
on:
pull_request:
branches:
- development
- master
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Andrew Cole
Copyright (c) 2024 Andrew Cole.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down