Skip to content

Commit

Permalink
Merge pull request #126 from LizardByte/nightly
Browse files Browse the repository at this point in the history
Pulling nightly into master
  • Loading branch information
ReenigneArcher committed Nov 28, 2022
2 parents 40fe5c8 + b864658 commit 89b1a3d
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cpp-clang-format-lint.yml
Expand Up @@ -44,7 +44,7 @@ jobs:
uses: actions/checkout@v3

- name: Clang format lint
uses: DoozyX/clang-format-lint-action@v0.14
uses: DoozyX/clang-format-lint-action@v0.15
with:
source: './src'
extensions: 'cpp,h,m,mm'
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/dependabot-rebase.yml
@@ -0,0 +1,21 @@
---
# This action is centrally managed in https://github.com/<organization>/.github/
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
# the above-mentioned repo.

name: Dependabot Rebase

on:
push:
branches:
- 'nightly'

jobs:
dependabot-rebase:
name: Dependabot Rebase
runs-on: ubuntu-latest
steps:
- name: rebase
uses: "bbeesley/gha-auto-dependabot-rebase@v1.2.0"
env:
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
30 changes: 24 additions & 6 deletions .github/workflows/global-replicator.yml
Expand Up @@ -22,7 +22,18 @@ jobs:
include:
- job_name: 'replicate workflows'
patterns_to_ignore: ''
patterns_to_include: '.github/dependabot.yml,.github/label-actions.yml,.github/pr_release_template.md,.github/workflows/auto-create-pr.yml,.github/workflows/automerge.yml,.github/workflows/autoupdate.yml,.github/workflows/issues.yml,.github/workflows/issues-stale.yml,.github/workflows/pull-requests.yml,.github/workflows/yaml-lint.yml' # yamllint disable-line rule:line-length
patterns_to_include: >-
.github/dependabot.yml,
.github/label-actions.yml,
.github/pr_release_template.md,
.github/workflows/auto-create-pr.yml,
.github/workflows/automerge.yml,
.github/workflows/autoupdate.yml,
.github/workflows/dependabot-rebase.yml,
.github/workflows/issues.yml,
.github/workflows/issues-stale.yml,
.github/workflows/pull-requests.yml,
.github/workflows/yaml-lint.yml
commit_message: 'ci: update global workflows'
repos_to_ignore: ''
topics_to_include: ''
Expand All @@ -32,7 +43,9 @@ jobs:
destination: ''
- job_name: 'replicate python'
patterns_to_ignore: ''
patterns_to_include: '.flake8,.github/workflows/python-flake8.yml'
patterns_to_include: >-
.flake8,
.github/workflows/python-flake8.yml
commit_message: 'ci: update global python'
repos_to_ignore: ''
topics_to_include: 'python'
Expand All @@ -42,7 +55,8 @@ jobs:
destination: ''
- job_name: 'replicate docker'
patterns_to_ignore: ''
patterns_to_include: '.github/workflows/ci-docker.yml'
patterns_to_include: >-
.github/workflows/ci-docker.yml
commit_message: 'ci: update global docker'
repos_to_ignore: ''
topics_to_include: 'docker'
Expand All @@ -52,7 +66,9 @@ jobs:
destination: ''
- job_name: 'replicate cpp'
patterns_to_ignore: ''
patterns_to_include: '.clang-format,.github/workflows/cpp-clang-format-lint.yml'
patterns_to_include: >-
.clang-format,
.github/workflows/cpp-clang-format-lint.yml
commit_message: 'ci: update global cpp'
repos_to_ignore: ''
topics_to_include: 'cpp'
Expand All @@ -62,7 +78,8 @@ jobs:
destination: ''
- job_name: 'custom issues'
patterns_to_ignore: ''
patterns_to_include: '.github/ISSUE_TEMPLATE/config.yml'
patterns_to_include: >-
.github/ISSUE_TEMPLATE/config.yml
commit_message: 'ci: update issue templates'
repos_to_ignore: ''
topics_to_include: 'replicator-custom-issues'
Expand All @@ -72,7 +89,8 @@ jobs:
destination: ''
- job_name: 'release notifier'
patterns_to_ignore: ''
patterns_to_include: '.github/workflows/release-notifier.yml'
patterns_to_include: >-
.github/workflows/release-notifier.yml
commit_message: 'ci: update release notifier'
repos_to_ignore: ''
topics_to_include: 'replicator-release-notifications'
Expand Down

0 comments on commit 89b1a3d

Please sign in to comment.