Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

rebase.yml 544 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. name: Automatic Rebase
  2. # https://github.com/marketplace/actions/automatic-rebase
  3. on:
  4. issue_comment:
  5. types: [ created ]
  6. jobs:
  7. rebase:
  8. name: Rebase
  9. if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
  10. runs-on: ubuntu-latest
  11. steps:
  12. - name: Checkout the latest code
  13. uses: actions/checkout@v2
  14. with:
  15. fetch-depth: 0
  16. - name: Automatic Rebase
  17. uses: cirrus-actions/rebase@1.3.1
  18. env:
  19. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...