Skip to content

Commit

Permalink
Merge pull request #2071 from pi-hole/master
Browse files Browse the repository at this point in the history
sync: master to devel
  • Loading branch information
PromoFaux committed Jan 11, 2022
2 parents f0c3ecd + 682a174 commit 4ad2d7d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
changelog:
exclude:
labels:
- ignore-for-release
- internal
authors:
- dependabot
- github-actions
28 changes: 28 additions & 0 deletions .github/workflows/sync-back-to-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Sync Back to Development

on:
push:
branches:
- master

jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing branches
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Opening pull request
id: pull
uses: tretuna/sync-branches@1.4.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FROM_BRANCH: 'master'
TO_BRANCH: 'devel'
CONTENT_COMPARISON: true
- name: Label the pull request to ignore for release note generation
uses: actions-ecosystem/action-add-labels@v1
with:
labels: internal
repo: ${{ github.repository }}
number: ${{ steps.pull.outputs.PULL_REQUEST_NUMBER }}

0 comments on commit 4ad2d7d

Please sign in to comment.