You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

command-rebase.yml 1.6KB

build(deps): bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [dorny/paths-filter](https://github.com/dorny/paths-filter), [actions/checkout](https://github.com/actions/checkout), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `dorny/paths-filter` from 3.0.0 to 3.0.2 - [Release notes](https://github.com/dorny/paths-filter/releases) - [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md) - [Commits](https://github.com/dorny/paths-filter/compare/v3...de90cc6fb38fc0963ad72b210f1f284cd68cea36) Updates `actions/checkout` from 4.1.1 to 4.1.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...9bb56186c3b09b4f86b1c65136769dd318469633) Updates `codecov/codecov-action` from 3.1.5 to 4.1.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Commits](https://github.com/codecov/codecov-action/compare/v3.1.5...v4.1.1) Updates `peter-evans/create-pull-request` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/a4f52f8033a6168103c2538976c07b467e8163bc...70a41aba780001da0a30141984ae2a0c95d8704e) --- updated-dependencies: - dependency-name: dorny/paths-filter dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 month ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # This workflow is provided via the organization template repository
  2. #
  3. # https://github.com/nextcloud/.github
  4. # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
  5. name: Rebase command
  6. on:
  7. issue_comment:
  8. types: created
  9. permissions:
  10. contents: read
  11. jobs:
  12. rebase:
  13. runs-on: ubuntu-latest
  14. permissions:
  15. contents: none
  16. # On pull requests and if the comment starts with `/rebase`
  17. if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase')
  18. steps:
  19. - name: Add reaction on start
  20. uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v3.0.1
  21. with:
  22. token: ${{ secrets.COMMAND_BOT_PAT }}
  23. repository: ${{ github.event.repository.full_name }}
  24. comment-id: ${{ github.event.comment.id }}
  25. reaction-type: "+1"
  26. - name: Checkout the latest code
  27. uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v3.5.2
  28. with:
  29. fetch-depth: 0
  30. token: ${{ secrets.COMMAND_BOT_PAT }}
  31. - name: Automatic Rebase
  32. uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8
  33. env:
  34. GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
  35. - name: Add reaction on failure
  36. uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v3.0.1
  37. if: failure()
  38. with:
  39. token: ${{ secrets.COMMAND_BOT_PAT }}
  40. repository: ${{ github.event.repository.full_name }}
  41. comment-id: ${{ github.event.comment.id }}
  42. reaction-type: "-1"