From: Stephan Beyer Date: Thu, 4 Jun 2020 22:37:44 +0000 (+0200) Subject: Rename rebase.yaml to rebase.yml for consistency X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~181 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=674759d94eb999a1b8cc112cb5bf8eeb53a213de;p=nextcloud-desktop.git Rename rebase.yaml to rebase.yml for consistency YAML files here use the .yml extension, not the .yaml extension. Hence the GitHub workflow file is renamed. Signed-off-by: Stephan Beyer --- diff --git a/.github/workflows/rebase.yaml b/.github/workflows/rebase.yaml deleted file mode 100644 index 7540cabf9..000000000 --- a/.github/workflows/rebase.yaml +++ /dev/null @@ -1,18 +0,0 @@ -on: - issue_comment: - types: [created] -name: Automatic Rebase -jobs: - rebase: - name: Rebase - if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') - runs-on: ubuntu-latest - steps: - - name: Checkout the latest code - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Automatic Rebase - uses: cirrus-actions/rebase@1.3.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml new file mode 100644 index 000000000..7540cabf9 --- /dev/null +++ b/.github/workflows/rebase.yml @@ -0,0 +1,18 @@ +on: + issue_comment: + types: [created] +name: Automatic Rebase +jobs: + rebase: + name: Rebase + if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') + runs-on: ubuntu-latest + steps: + - name: Checkout the latest code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Automatic Rebase + uses: cirrus-actions/rebase@1.3.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}