Add device support to HostConfig with DeviceRequest and DeviceMapping #28
This file contains hidden or 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: Sync Development to Main | |
| on: | |
| push: | |
| branches: | |
| - development | |
| permissions: | |
| contents: write | |
| jobs: | |
| merge: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Git | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| - name: Fetch and Checkout Main | |
| run: | | |
| git fetch origin | |
| git checkout main | |
| - name: Merge Development into Main | |
| run: | | |
| git merge --no-ff development -m "Automated merge from development to main" | |
| - name: Push Changes | |
| run: git push origin main |