Deploy Prod #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
schedule: | |
- cron: '10 8 * * 1' | |
workflow_dispatch: | |
name: Deploy Prod | |
jobs: | |
deploy: | |
name: Merge main to production | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Merge main to production | |
uses: devmasx/merge-branch@master | |
with: | |
type: now | |
from_branch: main | |
target_branch: production | |
github_token: ${{ secrets.GITHUB_TOKEN }} |