Refactor: Rename ensure_workers_for_host_submission to ensure_workers… #781
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: autoupdate | |
| on: | |
| # Triggers if commits are pushed to master branch | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| autoupdate: | |
| name: autoupdate | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: docker://chinthakagodawita/autoupdate-action:v1 | |
| env: | |
| GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
| DRY_RUN: 'false' | |
| PR_FILTER: 'labelled' | |
| PR_LABELS: 'can-be-merged' | |
| EXCLUDED_LABELS: 'needs-more-work' | |
| MERGE_MSG: 'Branch was auto-updated.' | |
| RETRY_COUNT: '10' | |
| RETRY_SLEEP: '300' | |
| MERGE_CONFLICT_ACTION: 'fail' |