pr_to_nightly.yml 759 B

1234567891011121314151617181920212223242526
  1. name: Create PR to merge to nightly from staging
  2. on:
  3. push:
  4. branches:
  5. - staging
  6. jobs:
  7. action-pull-request:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - name: Checkout repository
  11. uses: actions/checkout@v4
  12. with:
  13. fetch-depth: 0
  14. - name: Run the Action
  15. uses: devops-infra/action-pull-request@v0.5.5
  16. with:
  17. github_token: ${{ secrets.PRTONIGHTLY_ACTION_PAT }}
  18. title: Automatic PR to nightly from ${{ github.event.repository.updated_at}}
  19. assignee: DerLinkman
  20. source_branch: staging
  21. target_branch: nightly
  22. reviewer: DerLinkman
  23. label: upstream
  24. template: .github/ISSUE_TEMPLATE/pr_to_nighty_template.yml
  25. get_diff: true