force amd64 platform on docker #123
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
name: AutoMergeMainOnDevel | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
auto_merge: | |
if: github.repository == 'cnr-isti-vclab/meshlab' | |
name: Automatic Merge Main On Devel | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Merge main -> devel | |
uses: devmasx/merge-branch@master | |
with: | |
type: now | |
target_branch: devel | |
message: "Automatic merge branch 'main' into 'devel'" | |
github_token: ${{ github.token }} |