Update .ansible-test.yml #59
Workflow file for this run
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: Raise a Pullrequest | |
| on: | |
| push: | |
| branches: | |
| - "PR" # Support wildcard matching | |
| jobs: | |
| pull-request: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: pull-request | |
| uses: repo-sync/pull-request@v2 | |
| with: | |
| source_branch: "PR" # If blank, default: triggered branch | |
| destination_branch: "master" # If blank, default: master | |
| pr_label: "automation" | |
| pr_title: "Testing Ansible Automation" # Title of pull request | |
| pr_reviewer: "nabhajit-ray,AvijitOS" | |
| pr_body: ":crown: *An automated PR*" # Full markdown support, requires pr_title to be set | |
| pr_template: ".github/PULL_REQUEST_TEMPLATE.md" # Path to pull request template, requires pr_title to be set, excludes pr_body | |
| pr_allow_empty: true | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |