Merge pull request #230 from colonial-heritage/object-lists-package #177
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
# Branch main-copy is a copy of main to allow for deployment to a separate environment | |
# with the same codebase but a different configuration (e.g. env vars) | |
name: Merge main into main-copy | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
merge-branch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Merge main | |
uses: devmasx/[email protected] | |
with: | |
type: now | |
target_branch: main-copy | |
github_token: ${{ secrets.GITHUB_TOKEN }} |