mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
27 lines
619 B
YAML
27 lines
619 B
YAML
name: Merge Develop into Master
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
merge-master:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Create App Token
|
|
uses: actions/create-github-app-token@v1
|
|
id: app-token
|
|
with:
|
|
app-id: ${{ vars.APP_ID }}
|
|
private-key: ${{ secrets.APP_TOKEN }}
|
|
|
|
- name: Check Out Repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
ref: develop
|
|
fetch-depth: 0
|
|
|
|
- name: Push Develop into Master
|
|
run: |
|
|
git push origin refs/heads/develop:refs/heads/master
|