mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 10:43:55 +00:00
223ef72250
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 to 3.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.0.2...v3.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
728 B
YAML
27 lines
728 B
YAML
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@v3.1.0
|
|
- name: Opening pull request
|
|
id: pull
|
|
uses: tretuna/sync-branches@1.4.0
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
FROM_BRANCH: 'master'
|
|
TO_BRANCH: 'development'
|
|
- name: Label the pull request to ignore for release note generation
|
|
uses: actions-ecosystem/action-add-labels@v1.1.3
|
|
with:
|
|
labels: internal
|
|
repo: ${{ github.repository }}
|
|
number: ${{ steps.pull.outputs.PULL_REQUEST_NUMBER }}
|